/* * Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT. */ import dotenv from "dotenv"; dotenv.config(); /** * Example usage of the @interfere/sdk SDK * * To run this example from the examples directory: * npm run build && npx tsx healthGet.example.ts */ import { Interfere } from "@interfere/sdk"; const interfere = new Interfere(); async function main() { const result = await interfere.health.get(); console.log(result); } main().catch(console.error);