(workspaceId: string)
| 113 | } |
| 114 | |
| 115 | private getFilePath(workspaceId: string): string { |
| 116 | return path.join(this.config.getSessionDir(workspaceId), this.SESSION_USAGE_FILE); |
| 117 | } |
| 118 | |
| 119 | private createEmptyUsageFile(): SessionUsageFile { |
| 120 | return { byModel: {}, version: 1 }; |
no test coverage detected