2023-12-30 22:42:11 +00:00
|
|
|
//SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
|
|
|
//SPDX-License-Identifier: GPL-3.0-or-later
|
2023-12-13 20:33:11 +00:00
|
|
|
|
|
|
|
#include "handler.h"
|
|
|
|
|
|
|
|
Handler::Handler::Handler(const std::string& path, Request::Method method):
|
|
|
|
path(path),
|
|
|
|
method(method)
|
|
|
|
{}
|
|
|
|
|
|
|
|
Handler::Handler::~Handler() {}
|