package db type DBOType string func (dboType DBOType) String() string { return string(dboType) } const ( DBOTypePostgres DBOType = "postgres" DBOTypeOracle = "oracle" )