2
1
Fork 0
swim/notes.md

532 B

swim

A project planning board for the terminal.

Structs

  1. story
    • title string
    • body string
    • points int
    • tag int // enum representing a color
    • users []string
    • comments []comment
    • created time.time // the time the story was created
  2. comment
    • user string
    • body string
    • created time.time
  3. lane
    • title string
    • stories []story
  4. board
    • title string
    • body string
    • created time.time
    • lanes []lane