blob: 2dc0069e87d09817f0cfdbc1245a721b0a458241 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#pragma once
#include "servlet.h"
namespace NYql {
namespace NHttp {
///////////////////////////////////////////////////////////////////////////////
// TYqlFunctoinsServlet
///////////////////////////////////////////////////////////////////////////////
class TYqlFunctoinsServlet: public IServlet
{
public:
void DoGet(const TRequest& req, TResponse& resp) const override final;
};
} // namspace NNttp
} // namspace NYql
|