No Description

arianagiroux 62fdfaea3c Made tui only display tags/blockers when present 3 weeks ago
cmd ba91ee2e8b Implements constructors for Bugs and path to human readable parsing 3 weeks ago
tests 8851293f9b Made VariadicFields ignore dotfiles 3 weeks ago
.gitignore ed71b08993 Initial commit 3 weeks ago
Readme.md ba91ee2e8b Implements constructors for Bugs and path to human readable parsing 3 weeks ago
bug.go 8851293f9b Made VariadicFields ignore dotfiles 3 weeks ago
bug_test.go 8851293f9b Made VariadicFields ignore dotfiles 3 weeks ago
go.mod 733153fd7b Moves Bug view functionality to Model 3 weeks ago
go.sum 733153fd7b Moves Bug view functionality to Model 3 weeks ago
io.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing 3 weeks ago
io_test.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing 3 weeks ago
tui.go 62fdfaea3c Made tui only display tags/blockers when present 3 weeks ago
tui_test.go 2f06ce2796 Added basic tests for tui 3 weeks ago

Readme.md

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

TODO

  • bug.go:func (b Bug) New(title string, status Field, tags VariadicField, blockedby VariadicField, path string) (bug Bug, err error) { // TODO Implement
  • 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
  • tui.go:// TODO Implement Bubbletea
  • tui.go:// TODO Replace bug.go implementation of [Bug.View]