Listen to git commits for a specific repo and run a shell command

Remove message log

vielle.dev f1d15317 1e5b08c3

verified
-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,