Skip to content

RGGH/state_demo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rust

App State

Rust, State, Axum

cargo run
curl http://localhost:3000
curl -X POST http://localhost:3000/increment

❯ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.04s Running target/debug/demo_state

─────────────────────────────────────────────────────────

curl http://localhost:3000

Hello, world! (Counter: 0)                                                                                                   

─────────────────────────────────────────────────────────

curl -X POST http://localhost:3000/increment

Counter incremented to: 2