11 lines
162 B
Go
11 lines
162 B
Go
|
package register
|
||
|
|
||
|
type PluginServer struct {
|
||
|
Impl Plugin
|
||
|
}
|
||
|
|
||
|
func (ps *PluginServer) About(args any, resp *string) error {
|
||
|
*resp = ps.Impl.About()
|
||
|
return nil
|
||
|
}
|