9 lines
154 B
Python
9 lines
154 B
Python
from django.urls import path
|
|
from .views import WeatherView
|
|
|
|
app_name = 'weather'
|
|
|
|
urlpatterns = [
|
|
path('', WeatherView.as_view(), name='weather'),
|
|
]
|