This repository has been archived on 2024-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
flucky/pkg/db/dbotype.go

13 lines
185 B
Go

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