UNPKG

@jdlinker/system

Version:

jdLinker 系统模块

13 lines (10 loc) 243 B
import { defHttp } from '@jdlinker/func'; enum Api { actuatorList = '/actuator/httptrace' } /** * 追踪信息 */ export const getActuatorList = () => { return defHttp.get({ url: Api.actuatorList }, { isTransformResponse: false }); };