Merge pull request #3116 from nspcc-dev/2931-DBconfig-docs
Fix `DBConfiguration` description
This commit is contained in:
commit
cb1432233b
1 changed files with 2 additions and 1 deletions
|
@ -4,7 +4,8 @@ Package dbconfig is a micropackage that contains storage DB configuration option
|
|||
package dbconfig
|
||||
|
||||
type (
|
||||
// DBConfiguration describes configuration for DB. Supported: 'levelDB', 'boltDB'.
|
||||
// DBConfiguration describes configuration for DB. Supported types:
|
||||
// [LevelDB], [BoltDB] or [InMemoryDB] (not recommended for production usage).
|
||||
DBConfiguration struct {
|
||||
Type string `yaml:"Type"`
|
||||
LevelDBOptions LevelDBOptions `yaml:"LevelDBOptions"`
|
||||
|
|
Loading…
Reference in a new issue