type Manga struct {
Id int `json:"id"`
Url string `json:"url"`
SourceId string `json:"sourceId"`
Author string `json:"author"`
Artist string `json:"artist"`
Description string `json:"description"`
Genre []string `json:"genre"`
Status string `json:"status"`
}