about summary refs log tree commit diff
path: root/src/structs/config.go
blob: b94d090620cca5612d81f3e9d59bebfac2de35e1 (plain)
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
}