docs(sdk): 修正 ProxyReg 字段注释里的旧名(DeclareProxy→RegisterProxy)

Rename 时漏改了字段注释。代码本身一致(proxyReg 字段 + RegisterProxy 方法),
但注释里写着一个不存在的 API 名,读者按注释找不到方法。
This commit is contained in:
JianFeeeee
2026-09-26 13:18:55 +08:00
parent a7fbdb3110
commit 6c33bfdb82
2 changed files with 2 additions and 2 deletions

View File

@ -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 {

View File

@ -353,7 +353,7 @@ type PluginSDK struct {
events EventSubscriber
plgMgr PluginMgrAPI
// proxyDecl 是反代声明的收集回调(内置插件经 DeclareProxy 声明服务)。
// proxyReg 是反代声明的注册回调(内置插件经 RegisterProxy 声明服务)。
// 与上面的 API 字段同受 apiMu 保护——写方是内核注入,读方是插件 Start
// 起的 goroutine。
proxyReg ProxyRegistrar