File: aliyun.rb

package info (click to toggle)
ruby-fog-aliyun 0.4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 720 kB
  • sloc: ruby: 5,804; makefile: 6; sh: 3
file content (18 lines) | stat: -rw-r--r-- 431 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

require 'fog/core'
require 'fog/json'
require File.expand_path('../aliyun/version', __FILE__)

module Fog
  module Aliyun
    extend Fog::Provider

    # Services
    autoload :Compute,          File.expand_path('../aliyun/compute', __FILE__)
    autoload :Storage,          File.expand_path('../aliyun/storage', __FILE__)

    service(:compute, 'Compute')
    service(:storage, 'Storage')
  end
end