mirror of
https://github.com/mxpv/podsync.git
synced 2024-05-11 05:55:04 +00:00
8 lines
154 B
Go
8 lines
154 B
Go
package db
|
|
|
|
type Config struct {
|
|
// Dir is a directory to keep database files
|
|
Dir string `toml:"dir"`
|
|
Badger *BadgerConfig `toml:"badger"`
|
|
}
|