mirror of
https://github.com/cloudflare/cloudflare-docs.git
synced 2026-01-11 20:06:58 +00:00
Introduces some automation to take the GitHub issue and sync it internally allowing us to map internal/external and track in both systems.
12 lines
231 B
Go
12 lines
231 B
Go
//go:build tools
|
|
// +build tools
|
|
|
|
package tools
|
|
|
|
//go:generate go install github.com/google/go-github/github
|
|
//go:generate go install golang.org/x/oauth2
|
|
|
|
import (
|
|
_ "github.com/google/go-github/github"
|
|
_ "golang.org/x/oauth2"
|
|
)
|