Files
services/crypto/main.go
2021-06-20 18:24:01 +01:00

25 lines
462 B
Go

package main
import (
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/logger"
"github.com/micro/services/crypto/handler"
pb "github.com/micro/services/crypto/proto"
)
func main() {
// Create service
srv := service.New(
service.Name("crypto"),
service.Version("latest"),
)
// Register handler
pb.RegisterCryptoHandler(srv.Server(), handler.New())
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}