ossLog.ts 326 B

123456789
  1. import type { OssLogListResponse } from '../types/ossLog'
  2. export async function fetchDemandBelongOssLogs(): Promise<OssLogListResponse> {
  3. const res = await fetch('/api/demand-belong-oss-logs')
  4. if (!res.ok) {
  5. throw new Error(`加载归类过程日志失败: ${res.status} ${res.statusText}`)
  6. }
  7. return res.json()
  8. }