mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-20 17:57:54 +00:00
15 lines
224 B
Go
15 lines
224 B
Go
// +build !sqlite3
|
|
|
|
package database
|
|
|
|
import (
|
|
"gorm.io/driver/mysql"
|
|
"gorm.io/driver/postgres"
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var opens = map[string]func(string) gorm.Dialector{
|
|
"mysql": mysql.Open,
|
|
"postgres": postgres.Open,
|
|
}
|