1 2 3 4 5 6 7 8 9 10 11 12
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 }