Method: AtprotoAuth::Storage::Interface#get

Defined in:
lib/atproto_auth/storage/interface.rb

#get(key) ⇒ Object?

Retrieve a value

Parameters:

  • key (String)

    Storage key

Returns:

  • (Object, nil)

    Stored value or nil if not found

Raises:



21
22
23
# File 'lib/atproto_auth/storage/interface.rb', line 21

def get(key)
  raise NotImplementedError
end