Files
termscp/src/system/mod.rs
2022-06-09 14:28:02 +02:00

16 lines
339 B
Rust

//! ## System
//!
//! `system` is the module which contains functions and data types related to current system
// modules
pub mod auto_update;
pub mod bookmarks_client;
pub mod config_client;
pub mod environment;
pub(self) mod keys;
pub mod logging;
pub mod notifications;
pub mod sshkey_storage;
pub mod theme_provider;
pub mod watcher;