aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/launchpad/launchpad.go
blob: 030d916957323640adfffa4c7a15b0c35dcb4505 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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
}