-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from Kimbbakar/update-readme
update readme
- Loading branch information
Showing
2 changed files
with
41 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,40 @@ | ||
### YATT | ||
## YATT | ||
|
||
A light weight command line note taking tools. | ||
|
||
#### Installation | ||
``` | ||
go get github.com/Kimbbakar/yatt | ||
``` | ||
#### Features from v1.0 release | ||
1. Create note | ||
``` | ||
yatt create - n "my first note" | ||
``` | ||
2. List notes | ||
``` | ||
yatt list [-t] | ||
# Response | ||
ID: 35410507ede64956a48ed4f5a09c10f8 | ||
Date: Thu, 16 Dec 2021 10:37:45 +06 | ||
Note: my 2nd note | ||
ID: 98ad7029b0da4862b973d2549d7967ea | ||
Date: Thu, 16 Dec 2021 10:37:38 +06 | ||
Note: my first note | ||
``` | ||
3. Delete Note | ||
``` | ||
yatt delete <id> | ||
``` | ||
4. Flash/Remove all notes | ||
``` | ||
yatt flash | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module github.com/kimbbakar/yatt | ||
module github.com/Kimbbakar/yatt | ||
|
||
go 1.16 | ||
|
||
|