24 lines
424 B
Go
24 lines
424 B
Go
|
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
|
||
|
}
|