mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +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 });
|