tangled
alpha
login
or
join now
ptr.pet
/
nsid-tracker
3
fork
atom
tracks lexicons and how many times they appeared on the jetstream
3
fork
atom
overview
issues
pulls
pipelines
feat(server): error on unknwn cmd
ptr.pet
7 months ago
e28fd9c4
d7265904
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+5
-1
1 changed file
expand all
collapse all
unified
split
server
src
main.rs
+5
-1
server/src/main.rs
···
44
44
debug();
45
45
return;
46
46
}
47
47
-
_ => {}
47
47
+
Some(x) => {
48
48
+
tracing::error!("unknown command: {}", x);
49
49
+
return;
50
50
+
}
51
51
+
None => {}
48
52
}
49
53
50
54
let db = Arc::new(Db::new(".fjall_data").expect("couldnt create db"));