mirror of
				https://github.com/more-tech4-magnum-opus/backend.git
				synced 2025-11-04 01:27:35 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			193 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			193 B
		
	
	
	
		
			Python
		
	
	
	
	
	
from django.apps import AppConfig
 | 
						|
 | 
						|
 | 
						|
class UsersConfig(AppConfig):
 | 
						|
    default_auto_field = "django.db.models.BigAutoField"
 | 
						|
    name = "users"
 | 
						|
 | 
						|
    def ready(self):
 | 
						|
        import users.signals
 |