import http from '@core/http'; import type { RobotInfo } from './type'; const enum API { 获取所有机器人 = '/robot/getAll', } export async function getAllRobot(): Promise { type D = RobotInfo[]; const data = await http.get(API.获取所有机器人); return data ?? []; }