mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-10 19:30:25 +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
|
||
|
|
}
|