add simple postcode lookup (#196)

This commit is contained in:
Asim Aslam
2021-08-26 16:02:26 +01:00
committed by GitHub
parent 3f2383c555
commit 487585a61a
12 changed files with 513 additions and 0 deletions

24
postcode/main.go Normal file
View File

@@ -0,0 +1,24 @@
package main
import (
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/logger"
"github.com/micro/services/postcode/handler"
pb "github.com/micro/services/postcode/proto"
)
func main() {
// Create service
srv := service.New(
service.Name("postcode"),
service.Version("latest"),
)
// Register handler
pb.RegisterPostcodeHandler(srv.Server(), new(handler.Postcode))
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}