6 lines
142 B
Ruby
6 lines
142 B
Ruby
class BackupService
|
|
def backup(file_path, options = {})
|
|
raise NotImplementedError.new("#{self.class}.backup not implemented")
|
|
end
|
|
end
|