返回 AiToEarn
work.api.ts
根目录 / project / aitoearn-web / src / api / platforms / work.api.ts
1 import type { ValidateWorkOwnershipDto, ValidateWorkOwnershipVo } from './work.types'
2 import http from '@/utils/request'
3
4 /**
5 * 校验作品归属
6 * POST /channel/work/validate
7 */
8 export function apiValidateWorkOwnership(data: ValidateWorkOwnershipDto) {
9 return http.post<ValidateWorkOwnershipVo>('/channel/work/validate', data)
10 }
11
11 lines TYPESCRIPT