tracks lexicons and how many times they appeared on the jetstream

feat(server): error on unknwn cmd

ptr.pet e28fd9c4 d7265904

verified
+5 -1
+5 -1
server/src/main.rs
··· 44 44 debug(); 45 45 return; 46 46 } 47 - _ => {} 47 + Some(x) => { 48 + tracing::error!("unknown command: {}", x); 49 + return; 50 + } 51 + None => {} 48 52 } 49 53 50 54 let db = Arc::new(Db::new(".fjall_data").expect("couldnt create db"));