blob: dec90a6c907359e9886bc33a165c2ad7b8aa573d (
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
|
package gitlab
import (
"time"
"github.com/MichaelMure/git-bug/bridge/core"
"github.com/MichaelMure/git-bug/cache"
)
const (
keyGitlabLogin = "gitlab-login"
)
type gitlabImporter struct {
conf core.Configuration
// number of imported issues
importedIssues int
// number of imported identities
importedIdentities int
}
func (*gitlabImporter) Init(conf core.Configuration) error {
return nil
}
func (*gitlabImporter) ImportAll(repo *cache.RepoCache, since time.Time) error {
return nil
}
|