go-common/app/job/main/passport-encrypt/dao/dao_test.go

21 lines
256 B
Go
Raw Normal View History

2019-04-22 10:49:16 +00:00
package dao
import (
"fmt"
"sync"
"go-common/app/job/main/passport-encrypt/conf"
)
var (
once sync.Once
d *Dao
)
func startDao() {
if err := conf.Init(); err != nil {
panic(fmt.Sprintf("conf.Init() error(%v)", err))
}
d = New(conf.Conf)
}