aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/github/github.go
blob: d905ec7d63927562871ba74ab6e01e22bee078f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package github

import "github.com/MichaelMure/git-bug/cache"

type github struct {
}

func (*github) Configure() error {
	panic("implement me")
}

func (*github) ImportAll(repo *cache.RepoCache) error {
	panic("implement me")
}

func (*github) Import(repo *cache.RepoCache, id string) error {
	panic("implement me")
}