0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 06:24:48 +08:00
discourse/lib/backup_restore/backuper.rb
Jake Goldsborough 23b5d1fbe5 DEV: Add backuper.rb for autoload backwards compatibility
Zeitwerk autoloads by filename. When code references BackupRestore::Backuper,
it looks for backup_restore/backuper.rb. This file loads creator.rb where the
Backuper = Creator alias is defined.
2026-01-22 23:03:23 +00:00

4 lines
118 B
Ruby
Vendored

# frozen_string_literal: true
# Backwards compatibility - Backuper was renamed to Creator
require_relative "creator"