All checks were successful
Build And Test / build-and-push (push) Successful in 4m35s
9 lines
149 B
Python
9 lines
149 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'tm_dsbd'
|
|
|
|
urlpatterns = [
|
|
path('grafana/', views.grafana_view, name='grafana'),
|
|
]
|