Gst is a cli command that consumes a remote API to achieve different actions about time-stamps
Go to file
Óscar M. Lage aba7a2bc03 Add: Tokio added as dependency 2021-11-17 19:29:44 +01:00
src Refactor: Getting rid of cmd and moving all the stuff to models 2021-11-17 19:29:44 +01:00
.gitignore Initial commit 2021-11-12 23:41:31 +01:00
Cargo.lock Add: Tokio added as dependency 2021-11-17 19:29:44 +01:00
Cargo.toml Add: Tokio added as dependency 2021-11-17 19:29:44 +01:00
README.md Fix: README little cosmetic "refactor" 2021-11-16 19:37:52 +01:00

README.md

Gst

Gst is a cli command that consumes a remote API to achieve different actions about time-stamps

What we're looking for

We're looking for a cli command that acts like this:

$ gst projects [pr]
  - List of projects
$ gst tasks [t] [--project|-pr] 11
  - List of tasks, if -pr grouped per projects else just last open tasks
$ gst stamps [--last]
  - List last stamps and status (open, closed...), like a summary
$ gst start -t 212
  - Add new stamp to the task 212
$ gst stop
  - Stop the last open stamp
$ gst description "Task description"
  - Add description to last stamp
$ gst addtask [--project|-pr] 11 "Task title"
  - Add a task to a project

Why Rust?

Because my mind wants to learn something new. Also, why not?