|
|
3 hafta önce | |
|---|---|---|
| cmd | 3 hafta önce | |
| tests | 3 hafta önce | |
| .gitignore | 3 hafta önce | |
| Readme.md | 3 hafta önce | |
| bug.go | 3 hafta önce | |
| bug_test.go | 3 hafta önce | |
| go.mod | 3 hafta önce | |
| go.sum | 3 hafta önce | |
| io.go | 3 hafta önce | |
| io_test.go | 3 hafta önce | |
| tui.go | 3 hafta önce | |
| tui_test.go | 3 hafta önce |
go run cmd/main.go PATH_TO_BUG
bug.go:func (b Bug) New(title string, status Field, tags VariadicField, blockedby VariadicField, path string) (bug Bug, err error) { // TODO Implementcmd/main.go:// TODO implement interface for browse bugs in folderio.go:func WriteBug(bug Bug) (success bool, err error) { return false, nil } // TODO: implementio.go:func DeleteBug(bug Bug) (success bool, err error) { return false, nil } // TODO: implement