blob: 7a375d6e0241b7ab5c294399649c6e28b4935d0d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
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)
}
func buildClientFromUsernameAndPassword(username, password string) (*gitlab.Client, error) {
return gitlab.NewBasicAuthClient(nil, "https://gitlab.com", username, password)
}
|