woodpecker/plugin/remote/gogs/register.go

25 lines
467 B
Go
Raw Normal View History

2014-09-28 03:36:11 +00:00
package gogs
import (
"github.com/drone/config"
"github.com/drone/drone/plugin/remote"
)
var (
gogsUrl = config.String("gogs-url", "")
gogsSecret = config.String("gogs-secret", "")
gogsOpen = config.Bool("gogs-open", false)
2014-09-28 03:36:11 +00:00
)
// Registers the Gogs plugin using the default
// settings from the config file or environment
// variables.
func Register() {
if len(*gogsUrl) == 0 {
return
}
remote.Register(
New(*gogsUrl, *gogsSecret, *gogsOpen),
2014-09-28 03:36:11 +00:00
)
}