1
0
GameServerSupervisor/gameserver/urls.py
Pratyush Desai 1c097640a7
Add base models for testing
Attempt to figure out the necessary data models
and applicable fields.

Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2024-12-20 15:01:01 +05:30

9 lines
111 B
Python

from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
]