()
| 9 | * 默认 daily stats 结构。返回新对象,调用方安全修改 |
| 10 | * @returns {Object} default stats |
| 11 | */ |
| 12 | const createDefaultStats = () => ({ |
| 13 | chat: { input: 0, output: 0 }, |
| 14 | cli: { calls: 0, input: 0, output: 0 } |
| 15 | }) |
| 16 | |
| 17 | /** |
no outgoing calls
no test coverage detected