UNPKG

@tokens-studio/sdk

Version:
11 lines 353 B
import { create } from '../../api/index.js'; import { getKey } from './api-key.js'; export function createClient(args) { return create({ auth: `Bearer ${getKey()}`, host: args['--host'] ?? 'graphql.app.tokens.studio', secure: !args['--insecure'], webSocketImpl: WebSocket, }); } //# sourceMappingURL=client.js.map