mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-08 10:20:26 +08:00
12 lines
200 B
Go
12 lines
200 B
Go
package application
|
|
|
|
import "mayfly-go/internal/mongo/infrastructure/persistence"
|
|
|
|
var (
|
|
mongoApp Mongo = newMongoAppImpl(persistence.GetMongoRepo())
|
|
)
|
|
|
|
func GetMongoApp() Mongo {
|
|
return mongoApp
|
|
}
|