snakepipe 2.2.1

A snake game based on stdin/stdout following unix philosophy
Documentation
1
2
3
4
5
6
7
8
use tokio::runtime::Runtime;

use crate::stream_sse::net::bootstrap;

pub fn run(address: String) {
    let rt = Runtime::new().unwrap();
    rt.block_on(bootstrap(address));
}