コード例 #1
0
ファイル: init.go プロジェクト: justintan/accounts
func InitServices(c cache.Cache, db *sql.DB) {
	_cache = c
	persistence.InitDB(db)
}
コード例 #2
0
ファイル: services_test.go プロジェクト: justintan/accounts
func TestMain(m *testing.M) {
	db := sql.OpenDB("localhost:3306", "root", "", "acc_test")
	persistence.InitDB(db)
	os.Exit(m.Run())
}