This commit is contained in:
Janos Dobronszki
2020-10-02 18:13:23 +02:00
parent 6f037a2dd7
commit 22ac6de1a6
6 changed files with 0 additions and 0 deletions

15
kv/main.go Normal file
View File

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