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

cli.rb « backup « gitlab « lib « gitlab-backup-cli « gems - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 01ea934863f24b3c26ba181375d10bbfb2621c9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# frozen_string_literal: true

module Gitlab
  module Backup
    # GitLab Backup CLI
    module Cli
      autoload :VERSION, 'gitlab/backup/cli/version'
      autoload :Runner, 'gitlab/backup/cli/runner'

      Error = Class.new(StandardError)
      # Your code goes here...
    end
  end
end