#pragma once
#include <cstdint>
#include <string>
namespace asw { struct Envelope { std::string topic; std::int64_t timestamp_ms; bool reliable; }; Envelope make_envelope(const std::string& topic, std::int64_t timestamp_ms); }
