class Dependabot::Clients::Azure

def fetch_file_contents(commit, path)

def fetch_file_contents(commit, path)
  response = get(T.must(source.api_endpoint) +
    source.organization + "/" + source.project +
    "/_apis/git/repositories/" + source.unscoped_repo +
    "/items?path=" + path +
    "&versionDescriptor.versionType=commit" \
    "&versionDescriptor.version=" + commit)
  response.body
end