mirror of
https://github.com/1Panel-dev/1Panel.git
synced 2025-03-04 13:04:13 +08:00
8 lines
263 B
Go
8 lines
263 B
Go
![]() |
import http from '@/api';
|
||
|
import { ResPage, ReqPage } from '../interface';
|
||
|
import { ResOperationLog } from '../interface/operation-log';
|
||
|
|
||
|
export const getOperationList = (info: ReqPage) => {
|
||
|
return http.post<ResPage<ResOperationLog>>(`/operations`, info);
|
||
|
};
|