7 lines
119 B
Go
7 lines
119 B
Go
|
package server
|
||
|
|
||
|
type Config struct {
|
||
|
Address string `mapstructure:"address"`
|
||
|
PprofOn bool `mapstructure:"pprof"`
|
||
|
}
|