mirror of
				https://github.com/evraz-hack/backend.git
				synced 2025-11-04 01: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()),
 | 
						|
]
 |