16 lines
333 B
C++
Raw Permalink Normal View History

2025-03-07 02:25:54 +01:00
#include <seafire/routing/diagnostics.hxx>
namespace seafire::routing
{
/// Returns a reference to the routing diagnostic category.
///
common::diagnostics_t::category_t const&
routing_category()
{
static common::diagnostics_t::category_t category{"router"};
return category;
}
} // namespace seafire::routing