mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-04 05:17:36 +03:00
15 lines
273 B
Go
15 lines
273 B
Go
package data
|
|
|
|
type AnnotationsResponse struct {
|
|
Response struct {
|
|
Referent struct {
|
|
Annotations []struct {
|
|
Body Annotation `json:"body"`
|
|
} `json:"annotations"`
|
|
} `json:"referent"`
|
|
} `json:"response"`
|
|
}
|
|
|
|
type Annotation struct {
|
|
HTML string `json:"html"`
|
|
}
|