Learn rust by implementing a todo list command line program. Connects to a https://todobackend.com/
Available commands are:
- get (List all todos)
- add "Some todo" (Creating a new todo)
- done 0 (Mark first todo as completed)
#Build
card build --release
#Run
cargo run COMMAND
- [] Use a proper command line argument parsing library.
- [] Deploy a todo-backend thats actually useful.