summaryrefslogtreecommitdiff
path: root/plugins/boltdb/boltjobs/config.go
blob: 013e30bfb760930d9109fcf824ecc9a867b30f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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() {

}