node_launchpad/
lib.rs

1// Copyright 2024 MaidSafe.net limited.
2//
3// This SAFE Network Software is licensed to you under The General Public License (GPL), version 3.
4// Unless required by applicable law or agreed to in writing, the SAFE Network Software distributed
5// under the GPL Licence is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
6// KIND, either express or implied. Please review the Licences for the specific language governing
7// permissions and limitations relating to use of the SAFE Network Software.
8
9// Allow unwrap_used and expect_used in this TUI crate - to be refactored
10#![allow(clippy::unwrap_used)]
11#![allow(clippy::expect_used)]
12// Allow unused_async - to be refactored
13#![allow(clippy::unused_async)]
14
15pub mod action;
16pub mod app;
17pub mod components;
18pub mod config;
19pub mod connection_mode;
20pub mod error;
21pub mod mode;
22pub mod node_mgmt;
23pub mod node_stats;
24pub mod style;
25pub mod system;
26pub mod tui;
27mod upnp;
28pub mod utils;
29pub mod widgets;
30
31#[macro_use]
32extern crate tracing;