From df323a17d6140f00cf29196b2bea49faa5150307 Mon Sep 17 00:00:00 2001 From: jaykayudo Date: Thu, 20 Mar 2025 06:40:35 +0100 Subject: [PATCH] feat: add urls.py to core --- core/urls.py | 3 +++ trajectfi/urls.py | 3 ++- 2 files changed, 5 insertions(+), 1 deletion(-) create mode 100644 core/urls.py diff --git a/core/urls.py b/core/urls.py new file mode 100644 index 0000000..ab25d75 --- /dev/null +++ b/core/urls.py @@ -0,0 +1,3 @@ +from django.urls import path # noqa + +urlpatterns = [] diff --git a/trajectfi/urls.py b/trajectfi/urls.py index 6462907..95cae23 100644 --- a/trajectfi/urls.py +++ b/trajectfi/urls.py @@ -16,8 +16,9 @@ """ from django.contrib import admin -from django.urls import path +from django.urls import include, path urlpatterns = [ path("admin/", admin.site.urls), + path("api/", include("core.urls")), ]