git-bug/bridge/github/github.go
Amine Hilaly 07492fb72a
[bridge/github] importer: tag imported issues with origin metadata
[bridge/github] exporter: correct export signature and cache maps
2019-06-24 21:29:57 +02:00

39 lines
685 B
Go

// Package github contains the Github bridge implementation
package github
import (
"context"
"github.com/shurcooL/githubv4"
"golang.org/x/oauth2"
"github.com/MichaelMure/git-bug/bridge/core"
)
func init() {
core.Register(&Github{})
}
type Github struct{}
func (*Github) Target() string {
return target
}
func (*Github) NewImporter() core.Importer {
return &githubImporter{}
}
func (*Github) NewExporter() core.Exporter {
return &githubExporter{}
}
func buildClient(token string) *githubv4.Client {
src := oauth2.StaticTokenSource(
&oauth2.Token{AccessToken: token},
)
httpClient := oauth2.NewClient(context.TODO(), src)
return githubv4.NewClient(httpClient)
}