diff options
Diffstat (limited to 'plugins/boltdb/boltjobs/config.go')
-rw-r--r-- | plugins/boltdb/boltjobs/config.go | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/plugins/boltdb/boltjobs/config.go b/plugins/boltdb/boltjobs/config.go new file mode 100644 index 00000000..013e30bf --- /dev/null +++ b/plugins/boltdb/boltjobs/config.go @@ -0,0 +1,16 @@ +package boltjobs + +type Config struct { + // File is boltDB file. No need to create it by your own, + // boltdb driver is able to create the file, or read existing + File string + // Bucket to store data in boltDB + bucket string + // db file permissions + Permissions int + // consume timeout +} + +func (c *Config) InitDefaults() { + +} |