viper-app/pkg/db/cli.go

16 lines
142 B
Go
Raw Normal View History

2023-02-03 16:18:31 +08:00
package db
import (
"gorm.io/gorm"
)
const (
TypeSQLITE = "sqlite"
TypeMYSQL = "mysql"
)
type Client struct {
Type string
*gorm.DB
}