71 Star 369 Fork 155

残源/SecurityManageFramwork

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
urls.py 1.70 KB
一键复制 编辑 原始数据 按行查看 历史
残源 提交于 2020-12-31 15:40 +08:00 . 初始化项目
"""SemfPro URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/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 include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
from django.conf import settings
from django.urls.conf import include
from django.conf.urls.static import static
urlpatterns = [
path('', include('Base.urls')),
path('log/', include('Log.urls')),
path('rbac/', include('RBAC.urls')),
path('usermanage/', include('UserManage.urls')),
path('vuln/', include('Vuln.urls')),
path('building/', include('Building.urls')),
path('task/', include('Task.urls')),
path('scanner/', include('Scanner.urls')),
path('asset/', include('Asset.urls')),
path('echolog/', include('EchoLog.urls')),
path('poc/', include('Poc.urls')),
path('workflow/',include('Workflow.urls')),
path('captcha/', include('captcha.urls')),
path('api/', include('ApiManage.urls')),
# path('semfpro/', admin.site.urls),
] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/gy071089/SecurityManageFramwork.git
git@gitee.com:gy071089/SecurityManageFramwork.git
gy071089
SecurityManageFramwork
SecurityManageFramwork
upgrade

搜索帮助