blob: a3f2b2d7ab9b13c8c95bcad4807efee5d0db05a2 [file] [log] [blame]
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//! Implementation of Network Monitor File System (fuchsia_network_monitor_fs).
//!
//! fuchsia_network_monitor_fs is a Unix-compatible filesystem that receives
//! properties of installed networks and communicates property updates to the
//! Fuchsia Network Policy socket proxy.
#![recursion_limit = "256"]
mod fs;
mod manager;
pub use fs::*;
pub use manager::*;