Aucune description

arianagiroux ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
cmd ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
tests 00040db42c Added io func to load bug from disk, unittests il y a 3 semaines
.gitignore ed71b08993 Initial commit il y a 3 semaines
Readme.md ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
bug.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
bug_test.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
go.mod 7dff3dadd4 Added outline for bubbletea ui il y a 3 semaines
go.sum 7dff3dadd4 Added outline for bubbletea ui il y a 3 semaines
io.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
io_test.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
tui.go ba91ee2e8b Implements constructors for Bugs and path to human readable parsing il y a 3 semaines
tui_test.go 370db29d64 Outlined some roadmap items in documentation il y a 3 semaines

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]