25 lines
707 B
Go
25 lines
707 B
Go
package main
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
|
|
"github.com/beckn/beckn-onix/pkg/plugin/definition"
|
|
"github.com/beckn/beckn-onix/pkg/plugin/implementation/signer"
|
|
)
|
|
|
|
// SignerProvider implements the definition.SignerProvider interface.
|
|
type SignerProvider struct{}
|
|
|
|
// New creates a new Signer instance using the provided configuration.
|
|
func (p SignerProvider) New(ctx context.Context, config map[string]string) (definition.Signer, func() error, error) {
|
|
if ctx == nil {
|
|
return nil, nil, errors.New("context cannot be nil")
|
|
}
|
|
|
|
return signer.New(ctx, &signer.Config{})
|
|
}
|
|
|
|
// Provider is the exported symbol that the plugin manager will look for.
|
|
var Provider definition.SignerProvider = SignerProvider{}
|