Tasks/types/types.go

19 lines
305 B
Go
Raw Normal View History

2015-11-13 17:04:42 +08:00
package types
2015-11-21 21:20:51 +08:00
//Task is the struct used to identify tasks
2015-11-13 17:04:42 +08:00
type Task struct {
Id int
Title string
Content string
Created string
2015-11-13 17:04:42 +08:00
}
2015-11-21 21:20:51 +08:00
//Context is the struct passed to templates
type Context struct {
Tasks []Task
Navigation string
2015-11-21 22:12:44 +08:00
Search string
2015-11-22 11:51:29 +08:00
Message string
2016-01-18 09:02:15 +08:00
CSRFToken string
2015-11-21 21:20:51 +08:00
}