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")), ]