Update store_ios.go

This commit is contained in:
İsmail
2024-11-11 10:23:43 +03:00
parent 0565e758ae
commit 4e1f2d3427

View File

@@ -3,6 +3,14 @@
package testutil package testutil
func CreatePostgresTestContainer() (func(), error) { return func() {}, nil } func CreatePostgresTestContainer() (func(), error) {
return func() {
// Empty function for Postgres
}, nil
}
func CreateMysqlTestContainer() (func(), error) { return func() {}, nil } func CreateMysqlTestContainer() (func(), error) {
return func() {
// Empty function for MySQL
}, nil
}