2
1
Fork 0
swim/task.go

8 lines
110 B
Go

package main
type Task struct {
Body string `json:"TaskBody"`
Complete bool `json:"TaskComplete"`
}