Files
freeswitch-modules/mod_jambonz_transcribe/parser.hpp
2023-12-26 10:57:15 -05:00

10 lines
191 B
C++

#ifndef __PARSER_H__
#define __PARSER_H__
#include <string>
#include <switch_json.h>
cJSON* parse_json(switch_core_session_t* session, const std::string& data, std::string& type) ;
#endif