mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
2e0b7e545a
Done with `rubocop --auto-correct --only EmptyLineBetweenDefs,EmptyLines,EmptyLinesAroundBody`
17 lines
358 B
Ruby
17 lines
358 B
Ruby
require 'fog/core/collection'
|
|
require 'fog/storm_on_demand/models/account/token'
|
|
|
|
module Fog
|
|
module Account
|
|
class StormOnDemand
|
|
class Tokens < Fog::Collection
|
|
model Fog::Account::StormOnDemand::Token
|
|
|
|
def create(options={})
|
|
t = service.create_token(options).body
|
|
new(t)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|