evennia/evennia/web/webclient/urls.py
2022-02-08 13:03:52 +01:00

10 lines
208 B
Python

"""
This structures the (simple) structure of the webpage 'application'.
"""
from django.urls import path
from . import views
app_name = "webclient"
urlpatterns = [path("", views.webclient, name="index")]