From 59f72429b442f3639c67a4d098cc7dc87f5a122f Mon Sep 17 00:00:00 2001 From: Tatiana Nesterenko Date: Sun, 3 Sep 2023 18:02:38 +0100 Subject: [PATCH] dbconfig: fix `DBConfiguration` description The list of three supported types (`Type`) in the `DBConfiguration` struct has been added. Signed-off-by: Tatiana Nesterenko --- pkg/core/storage/dbconfig/store_config.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkg/core/storage/dbconfig/store_config.go b/pkg/core/storage/dbconfig/store_config.go index 30945a6401..3d23c63589 100644 --- a/pkg/core/storage/dbconfig/store_config.go +++ b/pkg/core/storage/dbconfig/store_config.go @@ -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"`