Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 322 Bytes

USAGE.md

File metadata and controls

19 lines (14 loc) · 322 Bytes
import { Panora } from "@panora/sdk";

const panora = new Panora({
  apiKey: "<YOUR_API_KEY_HERE>",
});

async function run() {
  const result = await panora.hello();

  // Handle the result
  console.log(result);
}

run();