1
0
Fork 0
IdreXyz/label/urls.py

9 lines
126 B
Python
Raw Normal View History

2024-08-21 08:20:41 +02:00
from django.urls import path
2017-08-17 19:25:59 +02:00
from label import views
urlpatterns = [
2024-08-21 08:20:41 +02:00
path('', views.releases_view, name='releases'),
]