Sergey Kurdin 98d9673e30 Add user settings management with custom DB path support
- Introduced `pastebar_settings.yaml` for storing user settings.
- Implemented commands for getting, setting, and removing the custom DB path.
- Added functionality to manage general key-value settings.
- Created a `UserConfig` struct to handle user settings serialization and deserialization.
- Implemented methods to load and save user configuration.
2025-06-09 17:09:11 -04:00

13 lines
411 B
Rust

pub(crate) mod clipboard_commands;
pub(crate) mod collections_commands;
pub(crate) mod download_update;
pub(crate) mod history_commands;
pub(crate) mod items_commands;
pub(crate) mod link_metadata_commands;
pub(crate) mod request_commands;
pub(crate) mod security_commands;
pub(crate) mod shell_commands;
pub(crate) mod tabs_commands;
pub(crate) mod translations_commands;
pub(crate) mod user_settings_command;