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}
#axum #rustlang #githib #resfful