package server const DevMode = "dev" const ProdMode = "prod" type Config struct { Name string Mode string GrpcAddr string RegisterAddr string }