gitlab-ce/gems/gitlab-backup-cli/lib/gitlab/backup/cli.rb

18 lines
454 B
Ruby

# 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'
autoload :Utils, 'gitlab/backup/cli/utils'
autoload :Dependencies, 'gitlab/backup/cli/dependencies'
autoload :Shell, 'gitlab/backup/cli/shell'
Error = Class.new(StandardError)
# Your code goes here...
end
end
end