summaryrefslogtreecommitdiff
path: root/lib/gitlab/storage_check.rb
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