rconsole 1.1.0

A WebSocket-based logging library for Rust - send structured logs to NConsole desktop app
Documentation
1
2
3
4
5
6
7
8
//! Console layer - core WebConsole implementation, URI handling, and client info.

mod client_info;
mod uri;
pub(crate) mod web_console;

pub use client_info::ClientInfo;
pub use uri::normalize_uri;