1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2024-11-27 10:53:02 +00:00
nk20/apps/food/urls.py

8 lines
109 B
Python
Raw Normal View History

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index')
]