Class: Supabase::Auth::SupportedStorage
- Inherits:
-
Object
- Object
- Supabase::Auth::SupportedStorage
- Defined in:
- lib/supabase/auth/storage.rb
Direct Known Subclasses
Instance Method Summary collapse
Instance Method Details
#get_item(_key) ⇒ Object
6 7 8 |
# File 'lib/supabase/auth/storage.rb', line 6 def get_item(_key) raise NotImplementedError, "#{self.class}#get_item must be implemented" end |
#remove_item(_key) ⇒ Object
14 15 16 |
# File 'lib/supabase/auth/storage.rb', line 14 def remove_item(_key) raise NotImplementedError, "#{self.class}#remove_item must be implemented" end |
#set_item(_key, _value) ⇒ Object
10 11 12 |
# File 'lib/supabase/auth/storage.rb', line 10 def set_item(_key, _value) raise NotImplementedError, "#{self.class}#set_item must be implemented" end |