aboutsummaryrefslogtreecommitdiffstats
path: root/yql/tools/yqlrun/http/sql_tokens_servlet.h
blob: 049432410f0d4c31ea42c22137a473ad8b48f877 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "servlet.h"

namespace NYql {
namespace NHttp {

///////////////////////////////////////////////////////////////////////////////
// TSqlTokensServlet
///////////////////////////////////////////////////////////////////////////////
class TSqlTokensServlet: public IServlet {
public:
    TSqlTokensServlet();
    void DoGet(const TRequest& req, TResponse& resp) const override final;

private:
    TString Script_;
};

} // namespace NHttp
} // namespace NYql