dr.botzo/weather/urls.py

9 lines
203 B
Python
Raw Permalink Normal View History

2019-10-06 09:33:46 -05:00
"""URL patterns for markov stuff."""
from django.urls import path
from weather.views import rpc_weather_report
urlpatterns = [
path('rpc/<query>/', rpc_weather_report, name='weather_rpc_query'),
]