swim/notes.md

28 lines
532 B
Markdown
Raw Normal View History

2021-03-22 17:21:26 +00:00
# swim
A project planning board for the terminal.
## Structs
1. story
- title string
- body string
2021-03-22 17:21:26 +00:00
- points int
- tag int // enum representing a color
- users []string
2021-03-22 17:21:26 +00:00
- comments []comment
- created time.time // the time the story was created
2. comment
- user string
- body string
2021-03-22 17:21:26 +00:00
- created time.time
3. lane
- title string
- stories []story
4. board
- title string
- body string
2021-03-22 17:21:26 +00:00
- created time.time
- lanes []lane