1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/storm_on_demand/models/account/tokens.rb

18 lines
358 B
Ruby
Raw Normal View History

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