package localcache
func Invalidate(localCache map[string]interface{}, key string) {
delete(localCache, key)
}