-
Notifications
You must be signed in to change notification settings - Fork 0
/
mytodo.go
55 lines (44 loc) · 1.15 KB
/
mytodo.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
package mytodo
import "errors"
type Todolist struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title" binding: "required"`
Description string `json:"description" db:"description"`
}
type Userlist struct {
Id int
UserId int
ListId int
}
type TodoItem struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title" binding:"required"`
Description string `json:"description" db:"description"`
Done bool `json:"done" db:"done"`
}
type ListsItem struct {
Id int
ListId int
ItemId int
}
type UpdateListInput struct {
Title *string `json:"title"`
Description *string `json:"description"`
}
func (i UpdateListInput) Validate() error {
if i.Title == nil && i.Description == nil {
return errors.New("update structure has no values")
}
return nil
}
type UpdateItemInput struct {
Title *string `json:"title"`
Description *string `json:"description"`
Done *bool `json:"done"`
}
func (i UpdateItemInput) Validate() error {
if i.Title == nil && i.Description == nil && i.Done == nil {
return errors.New("update structure has no values")
}
return nil
}