summaryrefslogtreecommitdiff
path: root/src/orchestration/urls.py
diff options
context:
space:
mode:
authorCarlos Konstanski <carlos.konstanski@verizonwireless.com>2020-04-30 08:34:07 -0600
committerCarlos Konstanski <carlos.konstanski@verizonwireless.com>2020-04-30 08:34:07 -0600
commit08203a6cb7889e55975d1568e9f4a9187fad8306 (patch)
tree49ca07c8c2a44b213c0bfe23303bfbbda41d965a /src/orchestration/urls.py
initial commit
Diffstat (limited to 'src/orchestration/urls.py')
-rw-r--r--src/orchestration/urls.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/orchestration/urls.py b/src/orchestration/urls.py
new file mode 100644
index 0000000..6b7dbbc
--- /dev/null
+++ b/src/orchestration/urls.py
@@ -0,0 +1,8 @@
+from django.urls import path
+from . import views
+
+urlpatterns = [
+ path('', views.index, name='index'),
+ path('count/<int:count>/', views.count, name='count'),
+ path('imagesync/', views.imagesync, name='imagesync')
+]