func (c *Cacher) GetClubPicture(id int) (data []string, code int, err error) {
    // Get from cache.
    key := internal.GetKey(internal.KeyClubPicture, id)
    if c.cacher.Get(key, &data) == nil {
        return data, http.StatusOK, nil