()
| 72 | type ChClient = ReturnType<typeof createClient>; |
| 73 | |
| 74 | function getClient() { |
| 75 | const url = process.env.CLICKHOUSE_URL ?? 'http://localhost:8123'; |
| 76 | return createClient({ url }); |
| 77 | } |
| 78 | |
| 79 | function timeAgo(now: Date, days: number, minutesOffset = 0) { |
| 80 | return ( |
no test coverage detected