add crypto API

This commit is contained in:
Asim Aslam
2021-06-20 18:24:01 +01:00
parent 5db7872fa7
commit bbbf6d85a4
13 changed files with 1119 additions and 0 deletions

24
crypto/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/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)
}
}