mirror of
https://github.com/evennia/evennia.git
synced 2026-03-23 16:26:30 +01:00
8 lines
191 B
Python
8 lines
191 B
Python
"""
|
|
This structures the (simple) structure of the
|
|
webpage 'application'.
|
|
"""
|
|
from django.conf.urls import *
|
|
|
|
urlpatterns = [
|
|
url(r'^$', 'src.web.webclient.views.webclient', name="index")]
|