mirror of
https://github.com/modelscope/FunASR
synced 2025-09-15 14:48:36 +08:00
30 lines
458 B
C++
30 lines
458 B
C++
/**
|
|
* Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights
|
|
* Reserved. MIT License (https://opensource.org/licenses/MIT)
|
|
*/
|
|
/* 2023-2024 by zhaomingwork@qq.com */
|
|
|
|
|
|
#include "file_parse.hpp"
|
|
|
|
|
|
|
|
namespace http {
|
|
namespace server2 {
|
|
|
|
|
|
file_parser::file_parser(std::shared_ptr<FUNASR_MESSAGE> data_msg)
|
|
:data_msg(data_msg)
|
|
|
|
{
|
|
now_state=start;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace server2
|
|
} // namespace http
|