(workspaceId: string, name: string)
| 50 | |
| 51 | // Helper function to get cache key for server history |
| 52 | function getServerHistoryCacheKey(workspaceId: string, name: string): string { |
| 53 | return `server_history:${workspaceId}:${name}`; |
| 54 | } |
| 55 | |
| 56 | // Helper function to get server history from cache |
| 57 | async function getServerHistoryFromCache( |
no outgoing calls
no test coverage detected