viper-app/internal/model/db.go

18 lines
200 B
Go
Raw Permalink Normal View History

package model
import (
_ "embed"
)
const (
DBTypeSQLITE = "sqlite"
DBTypeMYSQL = "mysql"
)
var (
//go:embed db-init.sql
DBSQLInit string
//go:embed db-sqlite.sql
DBSQLConfigSQLite string
)