django-weather/weather_project/weather/urls.py
2025-04-01 02:03:23 +02:00

6 lines
No EOL
108 B
Python

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