mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
25 lines
422 B
Go
25 lines
422 B
Go
|
// Package launchad contains the Launchpad bridge implementation
|
||
|
package launchpad
|
||
|
|
||
|
import (
|
||
|
"github.com/MichaelMure/git-bug/bridge/core"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
core.Register(&Launchpad{})
|
||
|
}
|
||
|
|
||
|
type Launchpad struct{}
|
||
|
|
||
|
func (*Launchpad) Target() string {
|
||
|
return "launchpad-preview"
|
||
|
}
|
||
|
|
||
|
func (*Launchpad) NewImporter() core.Importer {
|
||
|
return &launchpadImporter{}
|
||
|
}
|
||
|
|
||
|
func (*Launchpad) NewExporter() core.Exporter {
|
||
|
return nil
|
||
|
}
|