Завершение контроллера

This commit is contained in:
Антон
2025-08-24 08:25:41 +03:00
parent d53814c3cc
commit 029f9c2fd3
3 changed files with 24 additions and 15 deletions
+2 -2
View File
@@ -18,9 +18,9 @@ template <class Body, class Allocator, class ResponseType>
class IController
{
public:
virtual std::optional<std::unique_ptr<IExecutor<Body, Allocator, ResponseType>>> FindExecutor(
virtual std::optional<std::shared_ptr<IExecutor<Body, Allocator, ResponseType>>> FindExecutor(
boost::beast::http::verb method
) const = 0;
) = 0;
virtual ~IController() = default;
};
}