rpi-vsts-ci-led/pkg/config/config.go

17 lines
198 B
Go
Raw Normal View History

2020-04-16 09:05:10 +00:00
package config
type Server struct {
Port int `yaml:"port" env:"SERVER_PORT"`
}
type Config struct {
Server Server `yaml:"server"`
}
var c *Config
func Load(p ...string) error {
return nil
}