Files
netbird/management/server/testutil/store_ios.go
Zoltan Papp 8722b79799 [relay] Update GO version and QUIC version (#4736)
- Go 1.25.5
- QUIC 0.55.0
2026-01-07 16:30:29 +01:00

22 lines
399 B
Go

//go: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
}