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