mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
07492fb72a
[bridge/github] exporter: correct export signature and cache maps
39 lines
685 B
Go
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)
|
|
}
|