Example #1
0
func InitServices(c cache.Cache, db *sql.DB) {
	_cache = c
	persistence.InitDB(db)
}
Example #2
0
func TestMain(m *testing.M) {
	db := sql.OpenDB("localhost:3306", "root", "", "acc_test")
	persistence.InitDB(db)
	os.Exit(m.Run())
}