Ei kuvausta

arianagiroux 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
cmd 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
tests 00040db42c Added io func to load bug from disk, unittests 3 viikkoa sitten
.gitignore ed71b08993 Initial commit 3 viikkoa sitten
Readme.md 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
bug.go 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
bug_test.go 622926cd13 Exposed some values in Field objects 3 viikkoa sitten
go.mod 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
go.sum 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
io.go 622926cd13 Exposed some values in Field objects 3 viikkoa sitten
io_test.go 622926cd13 Exposed some values in Field objects 3 viikkoa sitten
tui.go 7dff3dadd4 Added outline for bubbletea ui 3 viikkoa sitten
tui_test.go 370db29d64 Outlined some roadmap items in documentation 3 viikkoa sitten

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
  • tui.go:// TODO Implement Bubbletea
  • tui.go:func (m model) Init() tea.Cmd { return nil } // TODO implement
  • tui.go:func (m model) Update(msg tea.Msg) (tea.Model, tea.Cmd) { return m, nil } // TODO implement
  • tui.go:func (m model) View() string { return "" } // TODO implement