mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 10:12:06 +03:00
29 lines
455 B
Go
29 lines
455 B
Go
package gitlab
|
|
|
|
import (
|
|
"github.com/MichaelMure/git-bug/bridge/core"
|
|
"github.com/xanzy/go-gitlab"
|
|
)
|
|
|
|
func init() {
|
|
core.Register(&Gitlab{})
|
|
}
|
|
|
|
type Gitlab struct{}
|
|
|
|
func (*Gitlab) Target() string {
|
|
return target
|
|
}
|
|
|
|
func (*Gitlab) NewImporter() core.Importer {
|
|
return &gitlabImporter{}
|
|
}
|
|
|
|
func (*Gitlab) NewExporter() core.Exporter {
|
|
return &gitlabExporter{}
|
|
}
|
|
|
|
func buildClient(token string) *gitlab.Client {
|
|
return gitlab.NewClient(nil, token)
|
|
}
|