Skip to main content

driver_manager_shutdown/
lib.rs

1// Copyright 2026 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod node_removal_tracker;
6mod node_remover;
7mod node_shutdown_coordinator;
8mod shutdown_manager;
9mod shutdown_node;
10
11pub use node_removal_tracker::*;
12pub use node_remover::*;
13pub use node_shutdown_coordinator::*;
14pub use shutdown_manager::*;
15pub use shutdown_node::*;