django-weather/weather_project/weather/urls.py

6 lines
108 B
Python
Raw Normal View History

2025-04-01 00:03:23 +00:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]