mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 09:30:24 +08:00
14 lines
203 B
Go
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())
|
||
|
|
}
|