Files
gitlab-foss/gems/gitlab-backup-cli/lib/gitlab/backup/cli/shell.rb
2024-03-06 21:10:13 +00:00

15 lines
273 B
Ruby

# frozen_string_literal: true
autoload :Open3, 'open3'
module Gitlab
module Backup
module Cli
module Shell
autoload :Command, 'gitlab/backup/cli/shell/command'
autoload :Pipeline, 'gitlab/backup/cli/shell/pipeline'
end
end
end
end