chroma / clients /js /test /initAdminClient.ts
badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
213 Bytes
import { AdminClient } from "../src/AdminClient";
const PORT = process.env.PORT || "8000";
const URL = "http://localhost:" + PORT;
const adminClient = new AdminClient({ path: URL });
export default adminClient;