mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 00:10: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()
 | 
						|
)
 |