Files
netbird/management/server/testutil/store_ios.go
bcmmbaga bf091cdaff Fix func signature
Signed-off-by: bcmmbaga <bethuelmbaga12@gmail.com>
2025-04-25 17:54:46 +03:00

17 lines
293 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
}