mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
bdcc090851
Signed-off-by: kim (grufwub) <grufwub@gmail.com>
24 lines
247 B
Go
24 lines
247 B
Go
package dialect
|
|
|
|
type Name int
|
|
|
|
func (n Name) String() string {
|
|
switch n {
|
|
case PG:
|
|
return "pg"
|
|
case SQLite:
|
|
return "sqlite"
|
|
case MySQL:
|
|
return "mysql"
|
|
default:
|
|
return "invalid"
|
|
}
|
|
}
|
|
|
|
const (
|
|
Invalid Name = iota
|
|
PG
|
|
SQLite
|
|
MySQL
|
|
)
|