summaryrefslogtreecommitdiff
path: root/coding_assignment_project/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'coding_assignment_project/urls.py')
-rw-r--r--coding_assignment_project/urls.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/coding_assignment_project/urls.py b/coding_assignment_project/urls.py
new file mode 100644
index 0000000..7fcafc7
--- /dev/null
+++ b/coding_assignment_project/urls.py
@@ -0,0 +1,7 @@
+from django.contrib import admin
+from django.urls import path, include
+
+urlpatterns = [
+ path('admin/', admin.site.urls),
+ path('', include('procurement.urls'))
+]