mirror of
				https://github.com/elyby/chrly.git
				synced 2025-05-31 14:11:51 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			215 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			215 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package di
 | 
						|
 | 
						|
import "github.com/defval/di"
 | 
						|
 | 
						|
func New() (*di.Container, error) {
 | 
						|
	return di.New(
 | 
						|
		config,
 | 
						|
		dispatcher,
 | 
						|
		logger,
 | 
						|
		db,
 | 
						|
		mojangTextures,
 | 
						|
		handlers,
 | 
						|
		profilesDi,
 | 
						|
		server,
 | 
						|
		securityDiOptions,
 | 
						|
	)
 | 
						|
}
 |