//! S3 backups feature - database backup and restore operations.
//!
//! # Structure
//! - `mod.rs` - Feature-facing re-exports for backup/restore operations
//!
//! # Usage
//! The application performs backups and restores through endpoints:
//! - `POST /admin/backup` - Create database backup to S3
//! - `GET /admin/backups` - List backups and scheduled jobs
//! - `POST /admin/backup/{id}/restore` - Restore from backup
//! (implementation in `src/api/backup/`)
pub use crate;