mirror of
https://wget.la/https://github.com/leookun/cursor-byok
synced 2026-08-17 19:47:10 +08:00
v0.3.8
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
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())
|
||||
}
|
||||
Reference in New Issue
Block a user