class DomoscioViz::AuthorizationToken::StaticStorage
Public Instance Methods
get()
click to toggle source
# File lib/domoscio_viz/authorization_token.rb, line 21 def get @@token ||= nil end
store(token)
click to toggle source
# File lib/domoscio_viz/authorization_token.rb, line 25 def store(token) @@token = token end