1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-03-04 13:04:13 +08:00

8 lines
246 B
Go
Raw Normal View History

2022-08-24 11:10:50 +08:00
import { File } from '@/api/interface/file';
import http from '@/api';
import { ResultData } from '@/api/interface';
2022-08-19 16:02:58 +08:00
2022-08-24 11:10:50 +08:00
export const GetFilesList = (params: File.ReqFile) => {
return http.post<ResultData<File.File>>('files/search', params);
2022-08-19 16:02:58 +08:00
};