blob: 9b68ee8a2235572a22e268c3f52e3c8c2f9bb1b0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include "consumer.h"
#include <library/cpp/yt/yson_string/string.h>
namespace NYT::NYson {
////////////////////////////////////////////////////////////////////////////////
void IYsonConsumer::OnRaw(const TYsonStringBuf& yson)
{
OnRaw(yson.AsStringBuf(), yson.GetType());
}
////////////////////////////////////////////////////////////////////////////////
} // namespace NYT::NYson
|