mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 00:03:33 +10:00
8 lines
208 B
TypeScript
8 lines
208 B
TypeScript
import { PlainClient } from '@team-plain/typescript-sdk';
|
|
|
|
import { env } from '@documenso/lib/utils/env';
|
|
|
|
export const plainClient = new PlainClient({
|
|
apiKey: env('NEXT_PRIVATE_PLAIN_API_KEY') ?? '',
|
|
});
|