2019-10-14 10:59:11 -07:00

12 lines
139 B
Go

package compliance
type Config struct {
Address string
Port string
Version string
}
func NewConfig() *Config {
return &Config{}
}