13 lines
185 B
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"
|
||
|
)
|