mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
* feat: add movie search service close #183 * chore: update display name * chore: code review fix * feat: avoid panic when fields would be null or missed * chore: make it more readable * fix: correct format
26 lines
459 B
Go
26 lines
459 B
Go
package main
|
|
|
|
import (
|
|
"github.com/micro/services/movie/handler"
|
|
pb "github.com/micro/services/movie/proto"
|
|
|
|
"github.com/micro/micro/v3/service"
|
|
"github.com/micro/micro/v3/service/logger"
|
|
)
|
|
|
|
func main() {
|
|
// Create service
|
|
srv := service.New(
|
|
service.Name("movie"),
|
|
service.Version("latest"),
|
|
)
|
|
|
|
// Register handler
|
|
pb.RegisterMovieHandler(srv.Server(), handler.New())
|
|
|
|
// Run service
|
|
if err := srv.Run(); err != nil {
|
|
logger.Fatal(err)
|
|
}
|
|
}
|