nu_plugin_cloud 0.2.11+0.110.0

A nushell plugin for working with cloud storage services
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use log::debug;
use nu_plugin::{MsgPackSerializer, serve_plugin};
use nu_plugin_cloud::CloudPlugin;

#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

fn main() {
    env_logger::init();
    debug!("Starting cloud plugin");
    serve_plugin(&CloudPlugin::default(), MsgPackSerializer {})
}