PKGBUILD/pkg/db/dbotype.go

13 lines
185 B
Go
Raw Normal View History

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