gitlab-org--gitlab-foss/app/services/projects/import_export/shared.rb

14 lines
262 B
Ruby
Raw Normal View History

module Projects
module ImportExport
class Shared
def initialize(opts)
@opts = opts
end
def export_path
@export_path ||= Projects::ImportExport.export_path(relative_path: @opts[:relative_path])
end
end
end
2016-03-08 17:20:32 +00:00
end