Ingen beskrivning

arianagiroux 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan
cmd 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan
tests 00040db42c Added io func to load bug from disk, unittests 3 veckor sedan
.gitignore ed71b08993 Initial commit 3 veckor sedan
Readme.md 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan
bug.go 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan
bug_test.go 00040db42c Added io func to load bug from disk, unittests 3 veckor sedan
go.mod 71828c58d5 Implemented Bug.View and bug.go tests 3 veckor sedan
go.sum 71828c58d5 Implemented Bug.View and bug.go tests 3 veckor sedan
io.go 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan
io_test.go 00040db42c Added io func to load bug from disk, unittests 3 veckor sedan
tui.go 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan
tui_test.go 370db29d64 Outlined some roadmap items in documentation 3 veckor sedan

Readme.md

buggo - a go utility for the poor mans bug tracker framework

TODO

  • bug.go:func (b *Bug) parseHumanToMachine() string { return "" } // TODO: implement!
  • bug.go:func (b *Bug) parseMachineToHuman() string { return "" } // TODO: implement!
  • cmd/main.go:// TODO implement cli argv defs
  • io.go:func (b Bug) WriteBug() (success bool, err error) { return false, nil } // TODO: implement
  • io.go:func (b Bug) DeleteBug() (success bool, err error) { return false, nil } // TODO: implement