mirror of
https://github.com/netbirdio/netbird.git
synced 2025-02-12 16:30:09 +01:00
17 lines
269 B
Go
17 lines
269 B
Go
//go:build ios
|
|
// +build ios
|
|
|
|
package testutil
|
|
|
|
func CreatePostgresTestContainer() (func(), error) {
|
|
return func() {
|
|
// Empty function for Postgres
|
|
}, nil
|
|
}
|
|
|
|
func CreateMysqlTestContainer() (func(), error) {
|
|
return func() {
|
|
// Empty function for MySQL
|
|
}, nil
|
|
}
|