Welcome to mirror list, hosted at ThFree Co, Russian Federation.

storage_check.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fe81513c9ec21ac61ebc5b6023b38a03e19f6b63 (plain)
1
2
3
4
5
6
7
8
9
10
11
require_relative 'storage_check/cli'
require_relative 'storage_check/gitlab_caller'
require_relative 'storage_check/option_parser'
require_relative 'storage_check/response'

module Gitlab
  module StorageCheck
    ENDPOINT = '/-/storage_check'.freeze
    Options = Struct.new(:target, :token, :interval, :dryrun)
  end
end