mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-31 18:39:31 +01:00
02a3feddb8
* Add mysql store support * Add support to disable activity events recording
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
|
|
}
|