287a0bc
1
2
3
4
5
6
7
8
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;