2025-04-21 09:31:22 +00:00

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
}