yql_functions_servlet.h 429 B

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