mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
14 lines
141 B
Go
14 lines
141 B
Go
package global
|
|
|
|
import (
|
|
"mayfly-go/pkg/eventbus"
|
|
|
|
"gorm.io/gorm"
|
|
)
|
|
|
|
var (
|
|
Db *gorm.DB // gorm
|
|
|
|
EventBus eventbus.Bus = eventbus.New()
|
|
)
|