github.go

 1package github
 2
 3import (
 4	"github.com/MichaelMure/git-bug/bridge/core"
 5	"github.com/MichaelMure/git-bug/cache"
 6)
 7
 8type Github struct{}
 9
10func (*Github) Name() string {
11	return "github"
12}
13
14func (*Github) Importer() core.Importer {
15	return &githubImporter{}
16}
17
18func (*Github) Exporter() core.Exporter {
19	return nil
20}
21
22type githubImporter struct{}
23
24func (*githubImporter) ImportAll(repo *cache.RepoCache, conf core.Configuration) error {
25	panic("implement me")
26}
27
28func (*githubImporter) Import(repo *cache.RepoCache, conf core.Configuration, id string) error {
29	panic("implement me")
30}