Tasks/types/types.go

16 lines
248 B
Go
Raw Normal View History

2015-11-13 14:34:42 +05:30
package types
2015-11-21 18:50:51 +05:30
//Task is the struct used to identify tasks
2015-11-13 14:34:42 +05:30
type Task struct {
Id int
Title string
Content string
Created string
2015-11-13 14:34:42 +05:30
}
2015-11-21 18:50:51 +05:30
//Context is the struct passed to templates
type Context struct {
Tasks []Task
Navigation string
}