9 lines
126 B
Python
9 lines
126 B
Python
from django.urls import path
|
|
|
|
from label import views
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.releases_view, name='releases'),
|
|
]
|