mirror of
https://github.com/evraz-hack/backend.git
synced 2024-11-13 04:46:39 +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()),
|
|
]
|