spug/spug_api/apps/exec/urls.py

9 lines
149 B
Python
Raw Normal View History

2019-11-21 07:34:46 +00:00
from django.conf.urls import url
from .views import *
urlpatterns = [
url(r'template/$', TemplateView.as_view()),
2019-11-24 09:05:58 +00:00
url(r'do/$', do_task),
2019-11-21 07:34:46 +00:00
]