vegvisir/config/config.go

18 lines
217 B
Go
Raw Normal View History

2021-07-08 22:32:49 +02:00
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
}