bl4-cli 0.5.20

Command-line tool for Borderlands 4 save editing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Items database command handlers
//!
//! This module handles all `idb` subcommands for managing the verified items database.

mod attachments;
mod crud;
mod decode;
pub mod helpers;
mod metadata;
mod network;

// Re-export all command handlers
pub use attachments::{attach, export, import};
pub use crud::{add, init, list, salt, show, stats};
pub use decode::{decode, decode_all, import_save};
pub use helpers::merge_databases;
pub use metadata::{get_values, mark_legal, migrate_values, set_source, set_value, verify};
pub use network::{publish, pull};