about summary refs log tree commit diff
path: root/src/structs/config.go
blob: ce70c4ca758bb2d92c0b4f7e7f24e06466621ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package structs

// Configuration bundles the indivudial configurations
type Configuration struct {
	HTTP HTTPConfig
}

// HTTPConfig defines an HTTP config
type HTTPConfig struct {
	BindIP string
	Port   int
}