func (v *Validator) GetClub(id int) (*model.Club, int, error) {
    if id <= 0 {
        return nil, http.StatusBadRequest, errors.ErrInvalidID
    }