mirror of
https://gitee.com/dromara/go-view.git
synced 2025-05-02 22:36:35 +08:00
9 lines
206 B
TypeScript
9 lines
206 B
TypeScript
import { ModuleTypeEnum } from '@/enums/httpEnum'
|
|
|
|
// 接口白名单(免登录)
|
|
export const fetchAllowList = [
|
|
`${ModuleTypeEnum.SYSTEM}/login`
|
|
]
|
|
|
|
// 接口黑名单
|
|
export const fetchBlockList = [] |