2025-08-10 01:34:16 +02:00

10 lines
164 B
C++

#include <program/Program.h>
#include "DummyMsgEx.h"
bool DummyMsgEx::processIncoming(ResponseContext& ctx)
{
ctx.sendResponse(DummyMsg() );
return true;
}