drone_plugin/go_coverter/go_coverter.go

24 lines
424 B
Go
Raw Normal View History

2021-12-28 15:20:31 +08:00
package go_coverter
import (
"context"
"fmt"
"github.com/drone/drone-go/drone"
"github.com/drone/drone-go/plugin/converter"
)
// New returns a new conversion plugin.
func New() converter.Plugin {
return &plugin{}
}
type plugin struct{}
func (p *plugin) Convert(ctx context.Context, req *converter.Request) (*drone.Config, error) {
fmt.Printf("%+v", *req)
return &drone.Config{
Data: req.Config.Data,
}, nil
}