mirror of
https://github.com/himool/HimoolERP.git
synced 2025-02-24 14:13:48 +08:00
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
"""oms URL Configuration
|
|
|
|
The `urlpatterns` list routes URLs to views. For more information please see:
|
|
https://docs.djangoproject.com/en/2.2/topics/http/urls/
|
|
Examples:
|
|
Function views
|
|
1. Add an import: from my_app import views
|
|
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
|
Class-based views
|
|
1. Add an import: from other_app.views import Home
|
|
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
|
Including another URLconf
|
|
1. Import the include() function: from django.urls import ccccc, path
|
|
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
|
"""
|
|
from django.urls import path, include
|
|
from drf_yasg import views, openapi
|
|
|
|
|
|
schema_view = views.get_schema_view(openapi.Info('Project API', 'v1'), public=True)
|
|
|
|
|
|
urlpatterns = [
|
|
path('swagger/', schema_view.with_ui('swagger')),
|
|
path('redoc/', schema_view.with_ui('redoc')),
|
|
|
|
path('api/user/', include('user.urls')),
|
|
path('api/', include('account.urls')),
|
|
path('api/', include('goods.urls')),
|
|
path('api/', include('warehouse.urls')),
|
|
path('api/', include('purchase.urls')),
|
|
path('api/', include('sales.urls')),
|
|
path('api/', include('report.urls')),
|
|
]
|