8 lines
122 B
Go
8 lines
122 B
Go
|
package config
|
||
|
|
||
|
// Config is the top level configuration
|
||
|
type Config struct {
|
||
|
ListenAddr string
|
||
|
EnableMetrics bool
|
||
|
}
|