aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/github/github.go
blob: 45954e23e66b75e76cbd3692d2bee12ab4faaf6a (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 github

import (
	"github.com/MichaelMure/git-bug/bridge/core"
	"github.com/MichaelMure/git-bug/cache"
)

type Github struct{}

func (*Github) Name() string {
	return "github"
}

func (*Github) Importer() core.Importer {
	return &githubImporter{}
}

func (*Github) Exporter() core.Exporter {
	return nil
}

type githubImporter struct{}

func (*githubImporter) ImportAll(repo *cache.RepoCache, conf core.Configuration) error {
	panic("implement me")
}

func (*githubImporter) Import(repo *cache.RepoCache, conf core.Configuration, id string) error {
	panic("implement me")
}