Базовый контроллер собран

This commit is contained in:
Антон
2025-08-23 21:38:53 +03:00
parent 8121534981
commit 823c6ccfe9
8 changed files with 92 additions and 86 deletions
+20
View File
@@ -0,0 +1,20 @@
#pragma once
#include <boost/beast.hpp>
#include "./IController.h"
namespace uad
{
template <class Body, class Allocator, class ResponseType>
class Controller : IController<Body, Allocator, ResponseType>
{
public:
std::optional<std::unique_ptr<IExecutor<Body, Allocator, ResponseType>>> FindExecutor(
boost::beast::http::verb method
) const override
{
return std::nullopt;
}
};
}