7 lines
147 B
Go
7 lines
147 B
Go
package config
|
|
|
|
type dbConfig struct {
|
|
Path string `toml:"path" mapstructure:"path"`
|
|
Session string `toml:"session" mapstructure:"session"`
|
|
}
|