mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-03 16:04:30 +00:00
15 lines
273 B
Ruby
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
|