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

12 lines
287 B
Go
Raw Normal View History

// export const GetAppList = ()
import http from '@/api';
import { App } from '../interface/app';
export const SyncApp = () => {
return http.post<any>('apps/sync', {});
};
export const SearchApp = (req: App.AppReq) => {
return http.post<App.AppResPage>('apps/search', req);
};