1234567891011121314151617181920212223242526272829303132 |
- package main
- import (
- "flag"
- "github.com/tal-tech/go-zero/core/conf"
- "github.com/tal-tech/go-zero/rest"
- "github.com/tal-tech/go-zero/zrpc"
- "github.com/zeromicro/zero-examples/graceful/dns/api/config"
- "github.com/zeromicro/zero-examples/graceful/dns/api/handler"
- "github.com/zeromicro/zero-examples/graceful/dns/api/svc"
- )
- var configFile = flag.String("f", "etc/graceful-api.json", "the config file")
- func main() {
- flag.Parse()
- var c config.Config
- conf.MustLoad(*configFile, &c)
- client := zrpc.MustNewClient(c.Rpc)
- ctx := &svc.ServiceContext{
- Client: client,
- }
- engine := rest.MustNewServer(c.RestConf)
- defer engine.Stop()
- handler.RegisterHandlers(engine, ctx)
- engine.Start()
- }
|