package structs // Configuration defines the overall configuration type Configuration struct { HTTP HTTPConfig } // HTTPConfig describes the config used for controlling the http server type HTTPConfig struct { BindIP string Port int }