- Add BackupData struct and BackupService with raw SQL export/import - Restore uses raw inserts to bypass brew deductions and timeline creation - Restore requires an empty database, inserts in FK dependency order - Add comprehensive e2e test verifying full round-trip fidelity
10 lines
184 B
Rust
10 lines
184 B
Rust
pub mod auth_api;
|
|
pub mod backup;
|
|
pub mod bags_api;
|
|
pub mod brews_api;
|
|
pub mod datastar;
|
|
pub mod gear_api;
|
|
pub mod helpers;
|
|
pub mod roasters_api;
|
|
pub mod roasts_api;
|
|
pub mod timeline;
|