Files
Achievement_Inputing/main/urls.py
2025-11-09 20:31:37 +08:00

9 lines
131 B
Python

from django.urls import path
from . import views
app_name = "main"
urlpatterns = [
path("home/", views.home, name="home"),
]