ngrok 0.1.0

A minimal ngrok wrapper
Documentation

ngrok-rs   Build Crate

A minimal ngrok wrapper.

Getting Started

[dependencies]
ngrok = "0.1.0"

Usage

use ngrok;

fn main() {
    let ngrok = ngrok::builder()
        .http()
        .port(3030)
        .run()
        .unwrap();


    let callback = ngrok.tunnel().http().unwrap();

    println!("Tunnel is open at {:?}", callback);
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Ent by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.