Files
services/quran/main.go
Asim Aslam f0542b1a6a Quran API (#205)
* Add basic version of a Quran API

* remove examples json swp

* fix search translation

* add examples json
2021-09-14 18:45:22 +01:00

26 lines
464 B
Go

package main
import (
"github.com/micro/services/quran/handler"
pb "github.com/micro/services/quran/proto"
"github.com/micro/micro/v3/service"
"github.com/micro/micro/v3/service/logger"
)
func main() {
// Create service
srv := service.New(
service.Name("quran"),
service.Version("latest"),
)
// Register handler
pb.RegisterQuranHandler(srv.Server(), new(handler.Quran))
// Run service
if err := srv.Run(); err != nil {
logger.Fatal(err)
}
}