mirror of
https://gitee.com/dromara/go-view.git
synced 2025-04-26 07:20:10 +08:00
12 lines
282 B
TypeScript
12 lines
282 B
TypeScript
import { ModuleTypeEnum } from '@/enums/httpEnum'
|
|
|
|
// 接口白名单(免登录)
|
|
export const fetchAllowList = [
|
|
// 登录
|
|
`${ModuleTypeEnum.SYSTEM}/login`,
|
|
// 预览获取数据
|
|
`${ModuleTypeEnum.PROJECT}/getData`,
|
|
]
|
|
|
|
// 接口黑名单
|
|
export const fetchBlockList = [] |