rootftp 0.3.0

A simple FTP server tool that allows you to play with files. Multiple users can share their files with each other. You can also build custom plugins see examples for more info.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use crate::{config::Config, helpers::plugin_library_handler::list_plugins};

pub async fn status() {
    let config = Config::load();
    let path = config.root_dir.join("credentials.json");

    println!("Current configuration:");
    println!("Root Directory: {}", &config.root_dir.display());
    println!("Using credentials file = {}", path.clone().display());
    list_plugins().await;
}