poli_planning/polyclinic_scheduling/apps/RUG_template/urls.py
2020-05-13 15:54:40 +02:00

7 lines
118 B
Python

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