aboutsummaryrefslogtreecommitdiffstats
path: root/bridge/launchpad/launchpad.go
blob: 51ee79d2bcee4a2da7b66af90b5828fa25468065 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Package launchpad contains the Launchpad bridge implementation
package launchpad

import (
	"time"

	"github.com/MichaelMure/git-bug/bridge/core"
)

const (
	target = "launchpad-preview"

	metaKeyLaunchpadID    = "launchpad-id"
	metaKeyLaunchpadLogin = "launchpad-login"

	confKeyProject = "project"

	defaultTimeout = 60 * time.Second
)

var _ core.BridgeImpl = &Launchpad{}

type Launchpad struct{}

func (*Launchpad) Target() string {
	return "launchpad-preview"
}

func (Launchpad) LoginMetaKey() string {
	return metaKeyLaunchpadLogin
}

func (*Launchpad) NewImporter() core.Importer {
	return &launchpadImporter{}
}

func (*Launchpad) NewExporter() core.Exporter {
	return nil
}