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