Bug fixing

This commit is contained in:
Your Name
2025-05-25 15:05:01 +12:00
parent 3cffb6cd94
commit 27acc9f9f0
7 changed files with 125 additions and 9 deletions

View File

@@ -7,6 +7,7 @@
#include "json.hpp"
#include "database.hpp"
#include "config.hpp"
#include "rate_limiter.hpp"
namespace simple_object_storage {
@@ -43,6 +44,7 @@ private:
httplib::Server server_;
bool running_;
std::unique_ptr<PutHandler> put_handler_;
std::unique_ptr<RateLimiter> auth_rate_limiter_;
};
} // namespace simple_object_storage