webapi, inital schema and routes (get_users)

provides the infrastructure for the webapi including setting up the
server and the routes.

Implements get_users as a test route
This commit is contained in:
Julia Lange 2026-03-03 10:45:36 -08:00
parent 1400b2fc95
commit 92763fd7dc
Signed by: Julia
SSH key fingerprint: SHA256:5DJcfxa5/fKCYn57dcabJa2vN2e6eT0pBerYi5SUbto
7 changed files with 197 additions and 0 deletions

View file

@ -9,3 +9,6 @@ rss = "2.0.12"
tokio = { version = "1.49.0", features = ["full"] }
sqlx = { version = "0.8.6", features = [ "runtime-tokio", "sqlite" ] }
chrono = "0.4.43"
axum = { version= "0.8.8", features = [ "macros" ] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.149"