Files
gitlab-foss/gems/gitlab-backup-cli/lib/gitlab/backup/cli/commands.rb
2024-10-08 06:18:18 +00:00

15 lines
450 B
Ruby

# frozen_string_literal: true
module Gitlab
module Backup
module Cli
module Commands
autoload :BackupSubcommand, 'gitlab/backup/cli/commands/backup_subcommand'
autoload :Command, 'gitlab/backup/cli/commands/command'
autoload :ObjectStorageCommand, 'gitlab/backup/cli/commands/object_storage_command'
autoload :RestoreSubcommand, 'gitlab/backup/cli/commands/restore_subcommand'
end
end
end
end