mirror of
				https://gitee.com/dromara/mayfly-go
				synced 2025-11-04 08:20:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			223 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package api
 | 
						|
 | 
						|
import "mayfly-go/pkg/ioc"
 | 
						|
 | 
						|
func InitIoc() {
 | 
						|
	ioc.Register(new(Account))
 | 
						|
	ioc.Register(new(Config))
 | 
						|
	ioc.Register(new(Resource))
 | 
						|
	ioc.Register(new(Role))
 | 
						|
	ioc.Register(new(Syslog))
 | 
						|
	ioc.Register(new(System))
 | 
						|
}
 |