mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-22 08:40:36 +02:00
23 lines
413 B
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
|
|
}
|