micro/examples/server/main.go

31 lines
493 B
Go
Raw Normal View History

2015-01-14 02:31:27 +03:00
package main
import (
2015-01-31 18:49:21 +03:00
log "github.com/golang/glog"
2015-05-05 21:05:06 +03:00
"github.com/myodc/go-micro/cmd"
2015-05-25 20:16:42 +03:00
"github.com/myodc/go-micro/examples/server/handler"
2015-05-05 21:05:06 +03:00
"github.com/myodc/go-micro/server"
2015-01-14 02:31:27 +03:00
)
func main() {
// optionally setup command line usage
cmd.Init()
2015-05-25 20:16:42 +03:00
server.Name = "go.micro.srv.example"
2015-01-14 02:31:27 +03:00
// Initialise Server
server.Init()
// Register Handlers
server.Register(
server.NewReceiver(
new(handler.Example),
),
)
// Run server
if err := server.Run(); err != nil {
log.Fatal(err)
}
}