aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorIvan Molodetskikh <yalterz@gmail.com>2024-02-10 08:40:13 +0400
committerIvan Molodetskikh <yalterz@gmail.com>2024-02-10 08:40:13 +0400
commite68641c0a773c4c79591545cfabb549c69ece45d (patch)
tree518e519584834b0ea8e1b429b9b1c2a2d0d1f93a /src/lib.rs
parent2a892ef5116999d17c7e87e4f915219d45bf1219 (diff)
downloadniri-e68641c0a773c4c79591545cfabb549c69ece45d.tar.gz
niri-e68641c0a773c4c79591545cfabb549c69ece45d.tar.bz2
niri-e68641c0a773c4c79591545cfabb549c69ece45d.zip
Move CLI types to submodule
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6a459378..b332dc5e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,6 +3,7 @@ extern crate tracing;
pub mod animation;
pub mod backend;
+pub mod cli;
pub mod config_error_notification;
pub mod cursor;
#[cfg(feature = "dbus")]
@@ -28,9 +29,3 @@ pub mod pw_utils;
#[cfg(not(feature = "xdp-gnome-screencast"))]
pub use dummy_pw_utils as pw_utils;
-
-#[derive(clap::Subcommand)]
-pub enum Msg {
- /// List connected outputs.
- Outputs,
-}