Method: AtprotoAuth::Storage::Interface#exists?

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

#exists?(key) ⇒ Boolean

Check if key exists

Parameters:

  • key (String)

    Storage key

Returns:

  • (Boolean)

    True if key exists

Raises:



37
38
39
# File 'lib/atproto_auth/storage/interface.rb', line 37

def exists?(key)
  raise NotImplementedError
end