mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
import { createClient } from '@clickhouse/client';
|
|
|
|
import { Env } from './env';
|
|
|
|
export const analytics = createClient({
|
|
url: Env.CLICKHOUSE_URL,
|
|
password: Env.CLICKHOUSE_PASSWORD,
|
|
});
|