s3tui 0.5.0

Simple TUI application for multiple s3 account operations
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # S3 TUI Library
//!
//! This library provides the core functionality for the S3 TUI application,
//! including S3 data fetching, transfer management, and model types.
//!
//! The library is primarily used by the s3tui binary, but can also be used
//! for integration testing with S3-compatible storage.

#![forbid(unsafe_code)]

pub mod model;
pub mod services;
pub mod settings;
pub mod utils;