blob: f862f24ed457cc31693362a852d0337f2dc62688 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
// 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
}
|