Files
EdgeAPI/internal/db/db_test.go
2021-01-19 12:05:35 +08:00

14 lines
203 B
Go

package db
import (
"github.com/iwind/TeaGo/Tea"
_ "github.com/iwind/TeaGo/bootstrap"
"github.com/iwind/TeaGo/dbs"
"testing"
)
func TestDB(t *testing.T) {
Tea.Env = "prod"
t.Log(dbs.Default())
}