FunASR/runtime/http/bin/file_parse.cpp
zhaomingwork 4b388768d0
cpp http post server support (#1739)
* add cpp http server

* add some comment

* remove some comments
2024-05-23 17:34:52 +08:00

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