mirror of
				https://github.com/evraz-hack/backend.git
				synced 2025-10-31 23:57:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			336 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			336 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.apps import AppConfig
 | |
| from django.utils.translation import gettext_lazy as _
 | |
| 
 | |
| 
 | |
| class UsersConfig(AppConfig):
 | |
|     name = "exhauster_analytics.users"
 | |
|     verbose_name = _("Users")
 | |
| 
 | |
|     def ready(self):
 | |
|         try:
 | |
|             import exhauster_analytics.users.signals  # noqa F401
 | |
|         except ImportError:
 | |
|             pass
 |