mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
19 lines
319 B
Go
19 lines
319 B
Go
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")
|
|
}
|