Gst is a cli command that consumes a remote API to achieve different actions about time-stamps
Go to file
Óscar M. Lage 5ce6fb8f60 Add: Duration field in Stamp 2021-11-22 18:48:11 +01:00
src Add: Duration field in Stamp 2021-11-22 18:48:11 +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 cosmetics 2021-11-18 20:58:24 +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
  - List of projects
$ gst tasks [--project|-p] 11 [--last|-l]
  - List of tasks, if -pr grouped per projects else just last open tasks
$ gst addtask [--project|-p] 11 -t "Task title"
  - Add a task to a project
$ gst stamps [--project|-p] [--last|-l]
  - List last stamps and status (open, closed...), like a summary
$ gst stamp --start -t 212 -d "stamp description" --dstart "20210101.." --dend "20210101.."
  - Add new stamp to the task 212
$ gst stamp --stop
  - Stop the last open stamp
$ gst stamp --update -d "stamp description" --dstart "20210101.." --dend "20210101.."
  - Update last stamp

Why Rust?

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