generated from Sithas/conan_template
Базовый контроллер собран
This commit is contained in:
@@ -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;
|
||||
}
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user