-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodels.api
More file actions
64 lines (57 loc) · 1.06 KB
/
Copy pathmodels.api
File metadata and controls
64 lines (57 loc) · 1.06 KB
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
63
64
syntax = "v1"
type signUpReq {
Username string `json:"username"`
Password string `json:"password"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Age int `json:"age"`
}
type messageRes {
Message string `json:"message"`
}
type (
signInReq {
Username string `json:"username"`
Password string `json:"password"`
}
signInRes {
Token string `json:"token"`
}
)
type (
getProfileRes {
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Age int `json:"age"`
}
updateProfileReq {
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Age int `json:"age"`
}
)
type (
createArticleReq {
Title string `json:"title"`
Body string `json:"body"`
}
)
type (
getArticleReq {
ArticleId int `path:"article_id"`
}
getArticleRes {
Title string `json:"title"`
Body string `json:"body"`
}
)
type (
updateArticleReq {
Id int `path:"article_id"`
Title string `json:"title"`
Body string `json:"body"`
}
deleteArticleReq {
Id int `path:"article_id"`
}
)