1
0
forked from erp-dev/erp

feat: backend api

This commit is contained in:
2025-11-06 13:24:02 +08:00
parent 999fdfb136
commit 37c2e7d723
11 changed files with 264 additions and 45 deletions

View File

@@ -64,6 +64,7 @@ INSTALLED_APPS = [
'basic_info',
'stock',
'api_v1',
'api_man',
]
MIDDLEWARE = [

View File

@@ -36,4 +36,5 @@ urlpatterns = [
path('admin/', admin.site.urls),
path('stock/', router.urls),
path('api/v1/', include('api_v1.urls')),
path('api/backend/', include('api_man.urls')),
]