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

11 lines
309 B
Go
Raw Normal View History

2022-08-24 11:10:50 +08:00
import { File } from '@/api/interface/file';
import http from '@/api';
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<File.File>('files/search', params);
2022-08-19 16:02:58 +08:00
};
2022-08-24 17:34:21 +08:00
export const GetFilesTree = (params: File.ReqFile) => {
return http.post<File.FileTree[]>('files/tree', params);
};