some thinking around passing the form
This commit is contained in:
parent
3fe6d25448
commit
0c50cfa639
9 changed files with 149 additions and 0 deletions
|
@ -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() {}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue