Files
services/app/main.go
2022-02-07 16:45:27 +00:00

28 lines
556 B
Go

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