mirror of
https://github.com/fergalmoran/ferglie.git
synced 2025-12-22 09:17:55 +00:00
6 lines
118 B
Python
Executable File
6 lines
118 B
Python
Executable File
from django.conf.urls import url
|
|
|
|
urlpatterns = [
|
|
url(r'^(?P<dispatch_id>\w+)/$', 'dispatcher.views.dispatch'),
|
|
]
|