decoyssh 1.0.2

A compact and portable SSH tarpit server.
1
2
3
4
5
6
use std::error::Error;

fn main() -> Result<(), Box<dyn Error>> {
    shadow_rs::new().map_err(|err| err.to_string())?;
    Ok(())
}