pica/handler/env.h

17 lines
259 B
C
Raw Normal View History

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
#pragma once
#include "handler.h"
namespace Handler {
2023-12-22 23:25:20 +00:00
class Env : public Handler {
2023-12-13 20:33:11 +00:00
public:
Env();
2023-12-22 23:25:20 +00:00
void handle(Request& request) override;
2023-12-13 20:33:11 +00:00
};
}