add forex api

This commit is contained in:
Asim Aslam
2021-06-21 10:01:05 +01:00
parent 24870da01a
commit 552e035e57
12 changed files with 1047 additions and 0 deletions

24
forex/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/forex/handler"
pb "github.com/micro/services/forex/proto"
)
func main() {
// Create service
srv := service.New(
service.Name("forex"),
service.Version("latest"),
)
// Register handler
pb.RegisterForexHandler(srv.Server(), handler.New())
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}