Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 351 Bytes

File metadata and controls

18 lines (14 loc) · 351 Bytes
import { Speakeasy } from "@speakeasy-api/speakeasy-client-sdk-typescript";

const speakeasy = new Speakeasy({
  security: {
    apiKey: "<YOUR_API_KEY_HERE>",
  },
});

async function run() {
  await speakeasy.artifacts.createRemoteSource();
}

run();