blob: 92bda66b437b35489ec3a3f26032174c0ff6506b (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import { TriggerClient } from '@trigger.dev/sdk';
import { TRIGGER_API_KEY, TRIGGER_API_URL, TRIGGER_ID } from '$env/static/private';
export const client = new TriggerClient({
id: TRIGGER_ID,
apiKey: TRIGGER_API_KEY,
apiUrl: TRIGGER_API_URL
});
|