mirror of
https://github.com/go-admin-team/go-admin.git
synced 2026-09-20 17:57:54 +00:00
11 lines
188 B
Go
11 lines
188 B
Go
package database
|
|
|
|
import "github.com/jinzhu/gorm"
|
|
|
|
type Database interface {
|
|
Setup()
|
|
Open(dbType string, conn string) (db *gorm.DB, err error)
|
|
GetConnect() string
|
|
GetDriver() string
|
|
}
|