Нема описа

arianagiroux 2f06ce2796 Added basic tests for tui пре 3 недеља
cmd ba91ee2e8b Implements constructors for Bugs and path to human readable parsing пре 3 недеља
tests 00040db42c Added io func to load bug from disk, unittests пре 3 недеља
.gitignore ed71b08993 Initial commit пре 3 недеља
Readme.md ba91ee2e8b Implements constructors for Bugs and path to human readable parsing пре 3 недеља
bug.go 733153fd7b Moves Bug view functionality to Model пре 3 недеља
bug_test.go 733153fd7b Moves Bug view functionality to Model пре 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 733153fd7b Moves Bug view functionality to Model пре 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

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]