1
0
Fork 0
forked from wry/wry

config: move simple command schema into schema crate

This commit is contained in:
kossLAN 2026-05-29 17:10:00 -04:00
parent e21670f3f6
commit 36b5a831fc
No known key found for this signature in database
3 changed files with 60 additions and 55 deletions

View file

@ -4,6 +4,7 @@
//! policy, and docs metadata that need to be consumed by TOML parsing,
//! generated config documentation, and compositor-side application code.
pub mod action;
pub mod animations;
pub mod command;
pub mod input;
@ -13,6 +14,7 @@ pub mod output;
pub mod rules;
pub mod theme;
pub use action::SimpleCommand;
pub use animations::{AnimationCurveConfig, Animations};
pub use command::{Exec, Status};
pub use input::InputMatch;