1
0
mirror of https://gitlab.crans.org/bde/nk20 synced 2025-02-11 09:41:17 +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')
]