2
1
Fork 0

Initial commit

This commit is contained in:
sloum 2021-03-22 10:21:26 -07:00
commit 4dae95f7d6
2 changed files with 33 additions and 0 deletions

5
main.go Normal file
View File

@ -0,0 +1,5 @@
package main
func main() {
print("This will be a swim lane project planning application")
}

28
notes.md Normal file
View File

@ -0,0 +1,28 @@
# swim
A project planning board for the terminal.
## Structs
1. story
- title string
- details string
- points int
- tag int // enum representing a color
- assignee string // username
- reviewer string // username
- comments []comment
- created time.time // the time the story was created
2. comment
- user string
- comment string
- created time.time
3. lane
- title string
- stories []story
4. board
- title string
- details string
- created time.time
- lanes []lane