Files
netbird/management/server/testutil/store_ios.go
bcmmbaga 6ada015360 Merge branch 'main' into flow-events-correlation
# Conflicts:
#	management/server/http/api/openapi.yml
2025-04-30 12:54:29 +03:00

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
}