cloudflare-docs/tools/tools.go
Jacob Bednarz 875010629a
feat(tools): support syncing issues internally (#8621)
Introduces some automation to take the GitHub issue and sync it
internally allowing us to map internal/external and track in both
systems.
2023-05-01 08:39:31 -05:00

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"
)