-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.go
62 lines (50 loc) · 1.31 KB
/
todo.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
56
57
58
59
60
61
62
package todo
import "errors"
type User struct {
Id int `json:"-" db:"id"`
Name string `json:"name"`
Username string `json:"username"`
Password string `json:"password"`
}
type TodoList struct {
Id int `json:"id" db:"id"`
Title string `json:"title" db:"title"` // binding: "required"
Description string `json:"description" db:"description"`
}
type UsersList 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"`
}
type UpdateItemInput struct {
Title *string `json:"title"`
Description *string `json:"description"`
Done *bool `json:"done"`
}
func (i UpdateListInput) Validate() error {
if i.Title == nil && i.Description == nil {
return errors.New("update structure has no values")
}
return nil
}
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
}