Files
2025-01-08 00:34:34 +00:00

16 lines
328 B
Ruby

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