Titivillus/create_quest/urls.py

13 lines
200 B
Python
Raw Normal View History

2018-08-10 08:39:51 -04:00
#!/usr/bin/env python3
"""
create_quest app URL configuration.
"""
from django.urls import path
from . import views
app_name = 'create_quest'
urlpatterns = [
path('', views.index, name='index'),
]