secra_plugins 0.1.32

生产级插件系统 - 插件的生命周期
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 插件管理器常量定义

/// 默认插件目录
pub const DEFAULT_PLUGIN_DIR: &str = "/opt/secra/plugins";

/// 默认临时目录
pub const DEFAULT_TEMP_DIR: &str = "/opt/secra/plugins/temp";

/// 默认超时时间(秒)
pub const DEFAULT_TIMEOUT_SECS: u64 = 30;

/// 最大插件名称长度
pub const MAX_PLUGIN_NAME_LEN: usize = 255;

/// 最大动作名称长度
pub const MAX_ACTION_LEN: usize = 255;