1//! Core traits and types for unftp backends. 2 3pub mod auth; 4pub mod storage; 5 6type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;