|
@@ -1,12 +1,20 @@
|
|
|
-# buggo - a queer little tui for the poor mans issue tracker spec
|
|
|
|
|
|
|
+# issues - a queer little tui for the poor mans issue tracker spec
|
|
|
|
|
|
|
|
## Usage
|
|
## Usage
|
|
|
|
|
|
|
|
-`go run cmd/main.go PATH_TO_BUG`
|
|
|
|
|
|
|
+```
|
|
|
|
|
+issues PATH_TO_BUG
|
|
|
|
|
+```
|
|
|
|
|
+
|
|
|
|
|
+## Installation
|
|
|
|
|
+
|
|
|
|
|
+```
|
|
|
|
|
+go install cmd/issues.go
|
|
|
|
|
+```
|
|
|
|
|
|
|
|
## TODO
|
|
## TODO
|
|
|
|
|
|
|
|
-- `cmd/main.go:// TODO implement interface for browse bugs in folder`
|
|
|
|
|
|
|
+- `cmd/issues.go:// TODO implement interface for browse bugs in folder`
|
|
|
- `io.go:func WriteIssue(issue Issue) (success bool, err error) { return false, nil } // TODO: implement`
|
|
- `io.go:func WriteIssue(issue Issue) (success bool, err error) { return false, nil } // TODO: implement`
|
|
|
- `io.go:func DeleteIssue(issue Issue) (success bool, err error) { return false, nil } // TODO: implement`
|
|
- `io.go:func DeleteIssue(issue Issue) (success bool, err error) { return false, nil } // TODO: implement`
|
|
|
- `issue.go:func (i Issue) New(title string, status Field, tags VariadicField, blockedby VariadicField, path string) (issue Issue, err error) { // TODO Implement`
|
|
- `issue.go:func (i Issue) New(title string, status Field, tags VariadicField, blockedby VariadicField, path string) (issue Issue, err error) { // TODO Implement`
|