7 lines
158 B
Python
7 lines
158 B
Python
from django.urls import path
|
|
|
|
from .views import MetricsExporterView
|
|
|
|
urlpatterns = [
|
|
path("", MetricsExporterView.as_view(), name="metrics-exporter"),
|
|
]
|