summaryrefslogtreecommitdiff
path: root/src/orchestration/urls.py
diff options
context:
space:
mode:
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')
+]