Files
Dokploy-ts-sdk/USAGE.md
2025-09-26 02:33:10 +00:00

18 lines
334 B
Markdown

<!-- Start SDK Example Usage [usage] -->
```typescript
import { Dokploy } from "dokploy";
const dokploy = new Dokploy({
authorization: process.env["DOKPLOY_AUTHORIZATION"] ?? "",
});
async function run() {
const result = await dokploy.admin.getOne();
console.log(result);
}
run();
```
<!-- End SDK Example Usage [usage] -->