evennia/evennia/web/webclient/urls.py

9 lines
241 B
Python

"""
This structures the (simple) structure of the
webpage 'application'.
"""
from django.conf.urls import *
from evennia.web.webclient import views as webclient_views
urlpatterns = [
url(r'^$', webclient_views.webclient, name="index")]