- 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.
13 lines
411 B
Rust
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;
|