[WIP] Moving test services to this repo

This commit is contained in:
Janos Dobronszki
2020-10-02 15:03:48 +02:00
parent 61fe9c169b
commit 5c6ba0dbcd
49 changed files with 10400 additions and 0 deletions

15
example/main.go Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"example/handler"
"github.com/micro/micro/v3/service"
)
func main() {
srv := service.New(service.Name("example"))
srv.Handle(new(handler.Example))
srv.Run()
}