Skip to content

DanielCardonaRojas/todo_cli

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TODO Cli

Learn rust by implementing a todo list command line program. Connects to a https://todobackend.com/

Commands

Available commands are:

  • get (List all todos)
  • add "Some todo" (Creating a new todo)
  • done 0 (Mark first todo as completed)

Run / Build

#Build
card build --release
#Run
cargo run COMMAND

TODO

  • [] Use a proper command line argument parsing library.
  • [] Deploy a todo-backend thats actually useful.