Radix Relay
Hybrid mesh communications with Signal Protocol encryption
Loading...
Searching...
No Matches
event_handler.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <core/events.hpp>
4
5namespace radix_relay::concepts {
6
12template<typename T>
13concept event_handler = requires(T handler, const core::events::raw_command &raw_cmd) { handler.handle(raw_cmd); };
14
15}// namespace radix_relay::concepts
Concept defining the interface for handling raw command events.