diff --git a/server/main.go b/server/main.go index 6c544a3..8176a47 100644 --- a/server/main.go +++ b/server/main.go @@ -13,6 +13,12 @@ import ( "gopkg.in/urfave/cli.v2" ) +// Dafault host and port +const ( + Host = "localhost" + Port = 5001 +) + // Server settings type Server struct { *settings.Settings `yaml:"-"`