this repo has no description
5
fork

Configure Feed

Select the types of activity you want to include in your feed.

Remove message log

-2
-2
src/main.rs
··· 39 39 match ws::connect(format!("ws://{}/events", knot_server), |_out| { 40 40 println!(" Connection successful"); 41 41 |msg: ws::Message| { 42 - println!("Got message: {}", msg); 43 - 44 42 // parse json 45 43 let body = match json::parse(match msg.as_text() { 46 44 Ok(val) => val,