mirror of
				https://github.com/evraz-hack/backend.git
				synced 2025-10-30 23:27:26 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			297 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			297 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from django.urls import path
 | |
| 
 | |
| from exhauster_analytics.analytics.api.views import (
 | |
|     ListExgauster,
 | |
|     GetApproximatedExgausterSignals,
 | |
| )
 | |
| 
 | |
| app_name = "analytics"
 | |
| urlpatterns = [
 | |
|     path("list", ListExgauster.as_view()),
 | |
|     path("approximation", GetApproximatedExgausterSignals.as_view()),
 | |
| ]
 |