13 lines
200 B
Python
13 lines
200 B
Python
|
#!/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'),
|
||
|
]
|