athena_rs 3.4.7

Database driver
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! 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::api::backup::{
    admin_create_backup, admin_list_backups, admin_delete_backup,
    admin_restore_backup,
};