WIP
This commit is contained in:
@@ -3,27 +3,27 @@ package register
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"errors"
|
||||
)
|
||||
|
||||
type PluginServer struct {
|
||||
Impl Plugin
|
||||
}
|
||||
|
||||
func (ps *PluginServer) Do(args any, resp *string) error {
|
||||
rawReq, ok := args.(string)
|
||||
if !ok {
|
||||
return errors.New("args is not a string")
|
||||
}
|
||||
func (ps *PluginServer) Do(args *DoRequest, resp *string) error {
|
||||
//rawReq, ok := args.(string)
|
||||
//if !ok {
|
||||
// return errors.New("args is not a string")
|
||||
//}
|
||||
|
||||
var doReq DoRequest
|
||||
if err := json.Unmarshal([]byte(rawReq), &doReq); err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
if err := ps.Impl.Do(context.Background(), doReq.CommandName, doReq.Args); err != nil {
|
||||
//var doReq DoRequest
|
||||
//if err := json.Unmarshal([]byte(rawReq), &doReq); err != nil {
|
||||
// return err
|
||||
//}
|
||||
|
||||
if err := ps.Impl.Do(context.Background(), args.CommandName, args.Args); err != nil {
|
||||
return err
|
||||
}
|
||||
*resp = ""
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user