mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-07-25 16:03:48 +00:00
15 lines
408 B
Ruby
15 lines
408 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Backup
|
|
module Cli
|
|
module Services
|
|
autoload :Database, 'gitlab/backup/cli/services/database'
|
|
autoload :Postgres, 'gitlab/backup/cli/services/postgres'
|
|
autoload :GitalyBackup, 'gitlab/backup/cli/services/gitaly_backup'
|
|
autoload :GitalyClient, 'gitlab/backup/cli/services/gitaly_client'
|
|
end
|
|
end
|
|
end
|
|
end
|