Files
chunyu_project/weather/urls.py
T
2026-08-05 23:59:15 +08:00

9 lines
154 B
Python

from django.urls import path
from .views import WeatherView
app_name = 'weather'
urlpatterns = [
path('', WeatherView.as_view(), name='weather'),
]