nexcore_webmcp/lib.rs
1// Copyright © 2026 NexVigilant LLC. All Rights Reserved.
2// Intellectual Property of Matthew Alexander Campion, PharmD
3
4//! # WebMCP Config Registry
5//!
6//! NexVigilant's agent routing infrastructure. Stores, serves, and syncs
7//! browser automation configs for the MoltBrowser Hub.
8
9#![forbid(unsafe_code)]
10#![cfg_attr(
11 not(test),
12 deny(clippy::unwrap_used, clippy::expect_used, clippy::panic)
13)]
14
15pub mod config;