1 package localstorage 2 3 // GetItem returns the value for a key, or empty string if not found. 4 func GetItem(key string) string { panic("jsbridge") } 5 6 // SetItem stores a key-value pair. 7 func SetItem(key, value string) { panic("jsbridge") } 8 9 // RemoveItem deletes a key. 10 func RemoveItem(key string) { panic("jsbridge") } 11