nmdc-webfrontend/Config.go

24 lines
269 B
Go

package main
type Config struct {
App struct {
Name string
Version string
MotdHTML string
Debug bool
}
Web struct {
Port int
BindTo string
Extern string
Title string
}
Hub struct {
Address string
Port int
Tag string
}
}