Нет описания

arianagiroux 99f83ae463 Readme updates 3 недель назад
cmd b167728624 Implmented argv 3 недель назад
tests 8851293f9b Made VariadicFields ignore dotfiles 3 недель назад
.gitignore ed71b08993 Initial commit 3 недель назад
Readme.md 99f83ae463 Readme updates 3 недель назад
bug.go 8851293f9b Made VariadicFields ignore dotfiles 3 недель назад
bug_test.go 8851293f9b Made VariadicFields ignore dotfiles 3 недель назад
go.mod 733153fd7b Moves Bug view functionality to Model 3 недель назад
go.sum 733153fd7b Moves Bug view functionality to Model 3 недель назад
io.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing 3 недель назад
io_test.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing 3 недель назад
tui.go b167728624 Implmented argv 3 недель назад
tui_test.go 2f06ce2796 Added basic tests for tui 3 недель назад

Readme.md

buggo - a queer little tui for the poor mans bug tracker spec

Usage

go run cmd/main.go PATH_TO_BUG

TODO

  • bug.go:func (b Bug) New(title string, status Field, tags VariadicField, blockedby VariadicField, path string) (bug Bug, err error) { // TODO Implement
  • cmd/main.go:// TODO implement interface for browse bugs in folder
  • io.go:func WriteBug(bug Bug) (success bool, err error) { return false, nil } // TODO: implement
  • io.go:func DeleteBug(bug Bug) (success bool, err error) { return false, nil } // TODO: implement

See also