vegvisir/config/config.go
2021-07-09 18:30:18 +02:00

18 lines
217 B
Go

package config
type Config struct {
Server Server
Services map[string]Service
}
type Server struct {
Address string
Port int
}
type Service struct {
BaseURL string
ForwardTo string
Protocol string
}