mirror of
https://gitcode.com/JianFeeeee/HomeAgent.git
synced 2026-09-26 12:23:23 +00:00
docs(sdk): 修正 ProxyReg 字段注释里的旧名(DeclareProxy→RegisterProxy)
Rename 时漏改了字段注释。代码本身一致(proxyReg 字段 + RegisterProxy 方法), 但注释里写着一个不存在的 API 名,读者按注释找不到方法。
This commit is contained in:
@ -320,7 +320,7 @@ type SDKConfig struct {
|
||||
|
||||
func New(name string, cfg SDKConfig) *PluginSDK {
|
||||
base := pubsdk.New(name, cfg.Settings, cfg.RegTool, cfg.RegStage, cfg.RegAPI, cfg.RegOutput)
|
||||
// 反代声明收集:内置插件(无 plugin.json)在 Start 里用 DeclareProxy
|
||||
// 反代声明收集:内置插件(无 plugin.json)在 Start 里用 RegisterProxy
|
||||
// 声明自己的服务,落到本包的登记表;外部插件走 plugin.json 自动发现。
|
||||
base.SetProxyRegistrar(func(svc string, d pubsdk.ProxyDef) { RegisterBuiltinProxy(name, svc, d) })
|
||||
if cfg.IOManager != nil {
|
||||
|
||||
2
third_party/homeagent-sdk/sdk/plugin.go
vendored
2
third_party/homeagent-sdk/sdk/plugin.go
vendored
@ -353,7 +353,7 @@ type PluginSDK struct {
|
||||
events EventSubscriber
|
||||
plgMgr PluginMgrAPI
|
||||
|
||||
// proxyDecl 是反代声明的收集回调(内置插件经 DeclareProxy 声明服务)。
|
||||
// proxyReg 是反代声明的注册回调(内置插件经 RegisterProxy 声明服务)。
|
||||
// 与上面的 API 字段同受 apiMu 保护——写方是内核注入,读方是插件 Start
|
||||
// 起的 goroutine。
|
||||
proxyReg ProxyRegistrar
|
||||
|
||||
Reference in New Issue
Block a user