Learn.VideoAnalysis/VideoAnalysis/WebUI/src/api/routes.ts

16 lines
255 B
TypeScript

import { http } from "@/utils/http";
type Result = {
success: boolean;
data: Array<any>;
};
export const getAsyncRoutes = () => {
return new Promise<Result>((resolve, reject) => {
resolve({
success: true,
data: []
});
});
};