PromucFlow_constructor/app/server/storage/constants.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
)