dbconfig: fix DBConfiguration description

The list of three supported types (`Type`) in the `DBConfiguration` struct
has been added.

Signed-off-by: Tatiana Nesterenko <tatiana@nspcc.io>
This commit is contained in:
Tatiana Nesterenko 2023-09-03 18:02:38 +01:00
parent 0d30c834d5
commit 59f72429b4

View file

@ -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"`