from django.urls import path, include urlpatterns = [ path("auth/", include("api.authentication.urls")), path("user/", include("api.user.urls")), ]