|
4 | 4 | //! when the config file is not present or when a value is missing from the |
5 | 5 | //! config file. |
6 | 6 |
|
| 7 | +/// Default Prefix |
7 | 8 | pub(super) const PREFIX: &str = "-"; |
| 9 | +/// Default Auto Register Commands |
8 | 10 | pub(super) const AUTO_REGISTER_COMMANDS: bool = true; |
| 11 | +/// Default VC Auto Change |
9 | 12 | #[cfg(feature = "music")] |
10 | 13 | pub(super) const VC_AUTO_CHANGE: bool = false; |
| 14 | +/// Default Enable Spotify |
11 | 15 | #[cfg(feature = "spotify")] |
12 | 16 | pub(super) const ENABLE_SPOTIFY: bool = false; |
| 17 | +/// Default YT Search Count |
13 | 18 | #[cfg(feature = "music")] |
14 | 19 | pub(super) const YT_SEARCH_COUNT: u8 = 5; |
| 20 | +/// Default YT Age Restricted |
15 | 21 | #[cfg(feature = "music")] |
16 | 22 | pub(super) const YT_AGE_RESTRICTED: bool = false; |
| 23 | +/// Default Enable Database |
17 | 24 | #[cfg(feature = "database")] |
18 | 25 | pub(super) const ENABLE_DATABASE: bool = true; |
| 26 | +/// Default Always Embed |
19 | 27 | pub(super) const ALWAYS_EMBED: bool = false; |
| 28 | +/// Default Random Embed Colors |
20 | 29 | pub(super) const RANDOM_EMBED_COLORS: bool = false; |
| 30 | +/// Default Embed Success Color |
21 | 31 | pub(super) const SUCCESS_COLOR: u32 = 0x00FF00; |
| 32 | +/// Default Embed Normal Color |
22 | 33 | pub(super) const NORMAL_COLOR: u32 = 0x0000FF; |
| 34 | +/// Default Embed Error Color |
23 | 35 | pub(super) const ERROR_COLOR: u32 = 0xFF0000; |
| 36 | +/// Default Interaction Time Limit |
24 | 37 | pub(super) const INTERACTION_TIME_LIMIT: u64 = 30; |
0 commit comments