from django.urls import path, include urlpatterns = [ path('v1/auth/', include('api.auth.urls')), path('v1/account/', include('api.account.urls')) ]