2021-02-03 04:06:34 +00:00
|
|
|
package storage
|
|
|
|
|
2021-07-16 02:07:30 +00:00
|
|
|
// Config is the configuration for storage
|
2021-02-03 04:06:34 +00:00
|
|
|
type Config struct {
|
2021-02-21 00:00:54 +00:00
|
|
|
// File is the path of the file to use for persistence
|
2021-07-16 02:07:30 +00:00
|
|
|
// If blank, persistence is disabled
|
2021-09-10 22:00:04 +00:00
|
|
|
//
|
|
|
|
// XXX: Rename to path for v4.0.0
|
2021-02-03 04:06:34 +00:00
|
|
|
File string `yaml:"file"`
|
2021-07-16 02:07:30 +00:00
|
|
|
|
|
|
|
// Type of store
|
|
|
|
// If blank, uses the default in-memory store
|
|
|
|
Type Type `yaml:"type"`
|
2021-02-03 04:06:34 +00:00
|
|
|
}
|