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

View file

@ -5,6 +5,7 @@
#include "handler/info.h"
#include "handler/env.h"
#include "handler/register.h"
constexpr uint8_t currentDbVesion = 1;
@ -28,6 +29,7 @@ Server::Server():
router.addRoute(std::make_unique<Handler::Info>());
router.addRoute(std::make_unique<Handler::Env>());
router.addRoute(std::make_unique<Handler::Register>());
}
Server::~Server() {}