1
0
forked from blue/pica
pica/handler/info.h

18 lines
281 B
C
Raw Normal View History

2023-12-30 19:42:11 -03:00
//SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
//SPDX-License-Identifier: GPL-3.0-or-later
2023-12-13 17:33:11 -03:00
#pragma once
#include "handler.h"
#include "config.h"
namespace Handler {
class Info : public Handler {
public:
Info();
void handle(Request& request) override;
};
}