root
2024-05-13 ae04f1e6c06d2829f218954470abe5c0348f75a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 RecognitionService {
 
    Object recognition(MultipartFile file) throws IOException, ExecutionException, InterruptedException;
}