9 lines
203 B
Python
9 lines
203 B
Python
"""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'),
|
|
]
|