mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-11 13:46:11 +10:00
14 lines
258 B
Ruby
14 lines
258 B
Ruby
module Gitlab
|
|
module ImportExport
|
|
class Shared
|
|
def initialize(opts)
|
|
@opts = opts
|
|
end
|
|
|
|
def export_path
|
|
@export_path ||= Gitlab::ImportExport.export_path(relative_path: @opts[:relative_path])
|
|
end
|
|
end
|
|
end
|
|
end
|