bee_runtime/lib.rs
1// Copyright 2020-2021 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Runtime components and utilities for the bee node framework
5
6#![cfg_attr(doc_cfg, feature(doc_cfg))]
7#![deny(missing_docs, warnings)]
8
9pub mod event;
10pub mod node;
11pub mod resource;
12pub mod shutdown_stream;
13pub mod worker;