Files
netbird/management/server/testutil/store_ios.go

23 lines
413 B
Go

//go:build ios
// +build ios
package testutil
func CreatePostgresTestContainer() (func(), string, error) {
return func() {
// Empty function for Postgres
}, "", nil
}
func CreateMysqlTestContainer() (func(), string, error) {
return func() {
// Empty function for MySQL
}, "", nil
}
func CreateRedisTestContainer() (func(), string, error) {
return func() {
// Empty function for Redis
}, "", nil
}