github.go

 1package github
 2
 3import "github.com/MichaelMure/git-bug/cache"
 4
 5type github struct {
 6}
 7
 8func (*github) Configure() error {
 9	panic("implement me")
10}
11
12func (*github) ImportAll(repo *cache.RepoCache) error {
13	panic("implement me")
14}
15
16func (*github) Import(repo *cache.RepoCache, id string) error {
17	panic("implement me")
18}