11 lines
211 B
Ruby
11 lines
211 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Gitlab
|
|
module Git
|
|
module RepositoryMirroring
|
|
def remote_branches(remote_name)
|
|
gitaly_ref_client.remote_branches(remote_name)
|
|
end
|
|
end
|
|
end
|
|
end
|