refactor: remove system directory from meta_plugin

This commit is contained in:
Andrew Phillips
2025-08-26 20:29:40 -03:00
committed by Andrew Phillips (aider)
parent 29079ccb24
commit 73f23ff036
7 changed files with 0 additions and 0 deletions

13
src/meta_plugin/mod.rs Normal file
View File

@@ -0,0 +1,13 @@
pub mod cwd;
pub mod user;
pub mod shell;
pub mod shell_pid;
pub mod keep_pid;
pub mod hostname;
pub use cwd::CwdMetaPlugin;
pub use user::UserMetaPlugin;
pub use shell::ShellMetaPlugin;
pub use shell_pid::ShellPidMetaPlugin;
pub use keep_pid::KeepPidMetaPlugin;
pub use hostname::HostnameMetaPlugin;