16 lines
142 B
Go
16 lines
142 B
Go
package db
|
|
|
|
import (
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
const (
|
|
TypeSQLITE = "sqlite"
|
|
TypeMYSQL = "mysql"
|
|
)
|
|
|
|
type Client struct {
|
|
Type string
|
|
*gorm.DB
|
|
}
|