This repository has been archived on 2019-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
2018-06-08 19:00:49 +02:00

8 lines
132 B
Python

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