some thinking around passing the form

This commit is contained in:
Blue 2023-12-14 19:17:28 -03:00
parent 3fe6d25448
commit 0c50cfa639
Signed by: blue
GPG key ID: 9B203B252A63EE38
9 changed files with 149 additions and 0 deletions

16
handler/register.h Normal file
View file

@ -0,0 +1,16 @@
// SPDX-FileCopyrightText: 2023 Yury Gubich <blue@macaw.me>
// SPDX-License-Identifier: GPL-3.0-or-later
#pragma once
#include "handler.h"
namespace Handler {
class Register : public Handler::Handler {
public:
Register();
virtual void handle(Request& request);
};
}