Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 368 Bytes

File metadata and controls

18 lines (13 loc) · 368 Bytes
import { Firehydrant } from "firehydrant-typescript-sdk";

const firehydrant = new Firehydrant({
  apiKey: process.env["FIREHYDRANT_API_KEY"] ?? "",
});

async function run() {
  const result = await firehydrant.accountSettings.ping();

  console.log(result);
}

run();