18 lines
285 B
C
18 lines
285 B
C
|
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
|
||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include "handler.h"
|
||
|
#include "config.h"
|
||
|
|
||
|
namespace Handler {
|
||
|
|
||
|
class Info : public Handler {
|
||
|
public:
|
||
|
Info();
|
||
|
void handle(Request& request) override;
|
||
|
};
|
||
|
|
||
|
}
|