import api from './client'; export const AuditLogsApi = { getAll(params) { return api.get(`/audit-logs`, { params }).then((r) => r.data); }, };