Class: OAuth2c::Cache::Backends::Null

Inherits:
Object
  • Object
show all
Defined in:
lib/oauth2c/cache/backends/null.rb

Instance Method Summary collapse

Instance Method Details

#lookup(key) ⇒ Object



21
22
23
# File 'lib/oauth2c/cache/backends/null.rb', line 21

def lookup(key)
  nil
end

#store(key, bucket) ⇒ Object



25
26
27
# File 'lib/oauth2c/cache/backends/null.rb', line 25

def store(key, bucket)
  nil
end