mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-11 10:54:28 +00:00
26 lines
479 B
Go
26 lines
479 B
Go
package main
|
|
|
|
import (
|
|
"github.com/micro/services/password/handler"
|
|
pb "github.com/micro/services/password/proto"
|
|
|
|
"github.com/micro/micro/v3/service"
|
|
"github.com/micro/micro/v3/service/logger"
|
|
)
|
|
|
|
func main() {
|
|
// Create service
|
|
srv := service.New(
|
|
service.Name("password"),
|
|
service.Version("latest"),
|
|
)
|
|
|
|
// Register handler
|
|
pb.RegisterPasswordHandler(srv.Server(), new(handler.Password))
|
|
|
|
// Run service
|
|
if err := srv.Run(); err != nil {
|
|
logger.Fatal(err)
|
|
}
|
|
}
|