mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-12 11:15:12 +00:00
* gifs service * Commit from GitHub Actions (Publish APIs & Clients) Co-authored-by: domwong <domwong@users.noreply.github.com>
26 lines
455 B
Go
26 lines
455 B
Go
package main
|
|
|
|
import (
|
|
"github.com/micro/services/gifs/handler"
|
|
pb "github.com/micro/services/gifs/proto"
|
|
|
|
"github.com/micro/micro/v3/service"
|
|
"github.com/micro/micro/v3/service/logger"
|
|
)
|
|
|
|
func main() {
|
|
// Create service
|
|
srv := service.New(
|
|
service.Name("gifs"),
|
|
service.Version("latest"),
|
|
)
|
|
|
|
// Register handler
|
|
pb.RegisterGifsHandler(srv.Server(), handler.New())
|
|
|
|
// Run service
|
|
if err := srv.Run(); err != nil {
|
|
logger.Fatal(err)
|
|
}
|
|
}
|