-
Notifications
You must be signed in to change notification settings - Fork 1
/
model.go
55 lines (51 loc) · 1.57 KB
/
model.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 main
type LskyToken struct {
Status bool `json:"status"`
Message string `json:"message"`
Data struct {
Token string `json:"token"`
} `json:"data"`
}
type LskyUploadResponse struct {
Status bool `json:"status"`
Message string `json:"message"`
Data struct {
Key string `json:"key"`
Name string `json:"name"`
Pathname string `json:"pathname"`
OriginName string `json:"origin_name"`
Size float64 `json:"size"`
Mimetype string `json:"mimetype"`
Extension string `json:"extension"`
Md5 string `json:"md5"`
Sha1 string `json:"sha1"`
Links struct {
Url string `json:"url"`
Html string `json:"html"`
Bbcode string `json:"bbcode"`
Markdown string `json:"markdown"`
MarkdownWithLink string `json:"markdown_with_link"`
ThumbnailUrl string `json:"thumbnail_url"`
} `json:"links"`
} `json:"data"`
}
type CheveretoImageInfo struct {
Name string `json:"name"`
Extension string `json:"extension"`
Size int `json:"size,omitempty"`
Width int `json:"width,omitempty"`
Height int `json:"height,omitempty"`
Md5 string `json:"md5"`
Filename string `json:"filename"`
Mime string `json:"mime"`
Url string `json:"url"`
Thumb struct {
Url string `json:"url"`
} `json:"thumb"`
DisplayUrl string `json:"display_url"`
}
type CheveretoUploadResponse struct {
StatusCode int `json:"status_code"`
StatusTxt string `json:"status_txt"`
Image CheveretoImageInfo `json:"image"`
}