Got my first http methods routing and returning static strings with #Axum on #RustLang see #GitHib https://github.com/dave42w/daves_dashboard/tree/axum-start

Long time since I've tried writing a #Resfful interface. Is my 2007 O'Reilly Restful Web Services still good practice?

eg
View all users: GET /users
use query to filter eg
View active users: GET /users?state=Active

Create a user: POST /users

View a user: GET /users/{userid}

Update user: PUT /users/{userid}

Delete user: DELETE /users/{userid}

GitHub - dave42w/daves_dashboard at axum-start

Browser based system and world dashboard. Contribute to dave42w/daves_dashboard development by creating an account on GitHub.

GitHub