Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Task ¶
type Task struct { // ID describe the unique identify code of task ID string `json:"id" db:"id"` // ResultID describe the parent key result's id ResultID string `json:"result_id" db:"result_id"` // Title describe the title of task Title string `json:"title" db:"title"` // Completed describe the completed of task Completed bool `json:"completed" db:"completed"` // CreateAt describe the task create milliseconds CreateAt int64 `json:"create_at" db:"create_at"` }
Task declare a task basic information
Click to show internal directories.
Click to hide internal directories.