mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2026-09-25 08:00:56 +00:00
7 lines
188 B
Go
7 lines
188 B
Go
import { File } from '@/api/interface/file';
|
|
import http from '@/api';
|
|
|
|
export const GetFilesList = (params: File.ReqFile) => {
|
|
return http.post<File.File>('files/search', params);
|
|
};
|