mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-24 05:23:57 +00:00
7 lines
219 B
TypeScript
7 lines
219 B
TypeScript
import { GET, POST, PUT, DELETE } from '../request';
|
|
|
|
import type { FetchResultItem } from '@/types/plugin';
|
|
|
|
export const fetchUrls = (urlList: string[]) =>
|
|
POST<FetchResultItem[]>(`/plugins/urlFetch`, { urlList });
|