bfile/janitor/src/clean.rs

7 lines
121 B
Rust
Raw Normal View History

2023-10-11 16:06:07 +02:00
use std::error::Error;
use crate::state::State;
pub async fn clean(state: State) -> Result<(), Box<dyn Error>> {
}