init commit

This commit is contained in:
linguini
2026-07-13 10:34:54 +02:00
commit 26e9d8d3d0
151 changed files with 381 additions and 0 deletions
@@ -0,0 +1,18 @@
#include "ConnectionHandler.hpp"
#include <iostream>
void ConnectionHandler::onConnected(AMQP::TcpConnection *connection)
{
std::cout << "TCP CONNECTED\n";
}
void ConnectionHandler::onReady(AMQP::TcpConnection *connection)
{
std::cout << "AMQP READY\n";
}
void ConnectionHandler::onError(AMQP::TcpConnection *connection, const char *message)
{
std::cerr << "AMQP error: " << message << std::endl;
}