func (v *Validator) GetTopManga(t int, p int) ([]model.TopManga, int, error) {
    if !utils.InArrayInt(topMangaTypes, t) {
        return nil, http.StatusBadRequest, errors.ErrInvalidType
    }
    if p <= 0 {