Files
services/notes/main.go
Asim Aslam 3c38d96881 add notes (#218)
* add notes

* fix build

* Commit from GitHub Actions (Publish APIs & Clients)

Co-authored-by: asim <asim@users.noreply.github.com>
2021-09-29 14:02:28 +01:00

28 lines
504 B
Go

package main
import (
"github.com/micro/micro/v3/service"
log "github.com/micro/micro/v3/service/logger"
"github.com/micro/services/notes/handler"
pb "github.com/micro/services/notes/proto"
)
func main() {
// New Service
srv := service.New(
service.Name("notes"),
service.Version("latest"),
)
// Initialise service
srv.Init()
// Register Handler
pb.RegisterNotesHandler(srv.Server(), handler.New(srv.Client()))
// Run service
if err := srv.Run(); err != nil {
log.Fatal(err)
}
}