func (c *Cacher) GetClub(id int) (data *model.Club, code int, err error) {
    // Get from cache.
    key := internal.GetKey(internal.KeyClub, id)
    if c.cacher.Get(key, &data) == nil {
        return data, http.StatusOK, nil