mirror of
https://gitee.com/dromara/mayfly-go
synced 2026-04-27 14:45:18 +08:00
14 lines
151 B
Go
14 lines
151 B
Go
package global
|
|
|
|
import (
|
|
"mayfly-go/pkg/eventbus"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
Db *gorm.DB // gorm
|
|
|
|
EventBus eventbus.Bus[any] = eventbus.New[any]()
|
|
)
|