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 }