8 lines
140 B
Go
8 lines
140 B
Go
package config
|
|
|
|
type Badger struct {
|
|
Debug bool `toml:"debug"`
|
|
Dir string `toml:"dir"`
|
|
ValueDir *string `toml:"value_dir"`
|
|
}
|