Set up reflex and fix make watch

This commit is contained in:
Benedikt Kulmann
2020-04-22 09:27:55 +02:00
parent 2f42fcb35a
commit ea37e22f55
9 changed files with 63 additions and 19 deletions

File diff suppressed because one or more lines are too long

View File

@@ -138,6 +138,8 @@ func Server(cfg *config.Config) *cli.Command {
http.Logger(logger),
http.Context(ctx),
http.Config(cfg),
http.Flags(flagset.RootWithConfig(cfg)),
http.Flags(flagset.ServerWithConfig(cfg)),
)
gr.Add(func() error {
@@ -157,6 +159,8 @@ func Server(cfg *config.Config) *cli.Command {
grpc.Logger(logger),
grpc.Context(ctx),
grpc.Config(cfg),
grpc.Flags(flagset.RootWithConfig(cfg)),
grpc.Flags(flagset.ServerWithConfig(cfg)),
)
gr.Add(func() error {