Adding first generated sdk

This commit is contained in:
Niklas Nielsen
2024-05-24 17:16:47 -07:00
parent 4d01baa842
commit 4bdba6d48c
175 changed files with 25807 additions and 0 deletions

20
USAGE.md Normal file
View File

@@ -0,0 +1,20 @@
<!-- Start SDK Example Usage [usage] -->
```typescript
import { Log10 } from "log10ts";
const log10 = new Log10({
log10Token: "<YOUR_API_KEY_HERE>",
xLog10Organization: "<value>",
});
async function run() {
const result = await log10.sessions.create("<value>");
// Handle the result
console.log(result);
}
run();
```
<!-- End SDK Example Usage [usage] -->