()
| 116 | type ChClient = ReturnType<typeof createClient>; |
| 117 | |
| 118 | function getClient(): ChClient { |
| 119 | const url = process.env.CLICKHOUSE_URL ?? 'http://localhost:8123'; |
| 120 | return createClient({ url }); |
| 121 | } |
| 122 | |
| 123 | let eventSeq = 0; |
| 124 |
no test coverage detected