|
|
@ -5,9 +5,8 @@ export class ParseApplicationService { |
|
|
|
private readonly repository: ParseRepository |
|
|
|
) {} |
|
|
|
|
|
|
|
public async analyze(projectId: string, format: string, uploadIds: number[]): Promise<string> { |
|
|
|
const item = await this.repository.analyze(projectId, format, uploadIds) |
|
|
|
public async analyze(projectId: string, format: string, uploadIds: number[], option: object): Promise<string> { |
|
|
|
const item = await this.repository.analyze(projectId, format, uploadIds, option) |
|
|
|
return item |
|
|
|
|
|
|
|
} |
|
|
|
} |