1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-06-03 16:35:37 +02:00
Files
woodpecker/vendor/github.com/google/go-github/v39/github/without_appengine.go
T
6543 a82d569bd1 Upgrade github client (#381)
* update github client

* ajust types
2021-09-29 07:59:46 +02:00

21 lines
440 B
Go

// Copyright 2017 The go-github AUTHORS. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:build !appengine
// +build !appengine
// This file provides glue for making github work without App Engine.
package github
import (
"context"
"net/http"
)
func withContext(ctx context.Context, req *http.Request) *http.Request {
return req.WithContext(ctx)
}