Skip to content

Instantly share code, notes, and snippets.

@s4l1h
Created October 16, 2016 14:42
Show Gist options
  • Save s4l1h/110159f948c48ccc3c55c8ea374b71ae to your computer and use it in GitHub Desktop.
Save s4l1h/110159f948c48ccc3c55c8ea374b71ae to your computer and use it in GitHub Desktop.
func GetirOnu(key string,cache Cache) (string,error]){
value, err := cache.Get(key)
if err != nil {
fmt.Println("Hata Oluştu : ", err)
return "",error
}
return string(value),nil
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment