backend/exhauster_analytics/analytics/api/urls.py

13 lines
297 B
Python
Raw Permalink Normal View History

2023-02-18 23:51:02 +03:00
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()),
]