| 123456789101112131415161718192021222324252627 |
- package main
- import (
- "bookstore/api/internal/config"
- "bookstore/api/internal/handler"
- "bookstore/api/internal/svc"
- "flag"
- "github.com/tal-tech/go-zero/core/conf"
- "github.com/tal-tech/go-zero/rest"
- )
- var configFile = flag.String("f", "etc/bookstore-api.yaml", "the config file")
- func main() {
- flag.Parse()
- var c config.Config
- conf.MustLoad(*configFile, &c)
- ctx := svc.NewServiceContext(c)
- server := rest.MustNewServer(c.RestConf)
- defer server.Stop()
- handler.RegisterHandlers(server, ctx)
- server.Start()
- }
|