handle all xrpc routes with NotImplemented

Supported routes can be added as they become available
This commit is contained in:
Julia Lange 2025-04-18 19:10:17 -07:00
parent 1d577ef396
commit 57c396afe7
Signed by: Julia
SSH key fingerprint: SHA256:50XUMcOFYPUs9/1j7p9SPnwASZ7QnxXm7THF7HkbqzQ
3 changed files with 20 additions and 11 deletions

View file

@ -6,5 +6,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
axum = "0.8.3"
axum = { version = "0.8.3", features = ["json"] }
serde = "1.0.219"
serde_json = "1.0.140"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread"] }