slash-files-rs 0.1.0

Configurable Rust file browser with HTMX UI, JSON API, previews, batch operations, and multi-framework adapters.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(feature = "axum")]
#[path = "web/axum.rs"]
mod axum_adapter;

#[cfg(feature = "axum")]
pub use axum_adapter::axum;

#[cfg(feature = "actix-web")]
#[path = "web/actix_web.rs"]
pub mod actix_web;

#[cfg(feature = "poem")]
#[path = "web/poem.rs"]
pub mod poem;