Files
cursor-byok/internal/client/observer.go
T
2026-06-30 10:38:52 +08:00

22 lines
631 B
Go

package client
import (
"context"
localruntime "cursor/internal/runtime"
)
// runtimeConfigSnapshot 用于处理与 runtimeConfigSnapshot 相关的逻辑。
func (s *ProxyService) runtimeConfigSnapshot(_ context.Context) (localruntime.RuntimeConfigSnapshot, error) {
if s == nil {
return localruntime.RuntimeConfigSnapshot{}, nil
}
if s.backendHost != nil && s.backendHost.ConfigManager() != nil {
return s.backendHost.ConfigManager().LegacyRuntimeSnapshot(context.Background())
}
if s.store == nil {
return localruntime.RuntimeConfigSnapshot{}, nil
}
return s.store.LegacyRuntimeSnapshot(context.Background())
}