2024-06-05 13:13:24 +03:00
|
|
|
use std::include_str;
|
|
|
|
|
|
|
|
pub mod files {
|
|
|
|
use super::*;
|
|
|
|
|
2024-06-08 02:00:47 +03:00
|
|
|
pub const HELP_COMMAND_TEXT: &str = include_str!("help_command.html");
|
2024-06-05 13:13:24 +03:00
|
|
|
pub const MUTE_COMMAND_HELP: &str = include_str!("mute_command_help.html");
|
|
|
|
pub const UNMUTE_COMMAND_HELP: &str = include_str!("unmute_command_help.html");
|
|
|
|
}
|