11 lines
171 B
Go
11 lines
171 B
Go
package storage
|
|
|
|
// StorageType is the enum which defines the list of supported databases
|
|
type StorageType int
|
|
|
|
const (
|
|
PostgresDb StorageType = iota
|
|
MysqlDb
|
|
MongoDb
|
|
)
|