游雁
2024-10-31 e6f58e7bc74a2dc4b371a4045b1a8d86e39333bb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.example.funasr_java_client.Servcvice;
 
import org.springframework.web.multipart.MultipartFile;
 
import java.io.IOException;
import java.util.concurrent.ExecutionException;
 
/**
 *
 * @author Virgil Qiu
 * @since 2024/04/24
 *
 */
 
public interface RecognitionService2 {
 
    Object recognition(MultipartFile file) throws IOException, ExecutionException, InterruptedException;
}