mirror of
https://github.com/documenso/documenso.git
synced 2026-07-02 01:01:00 +10:00
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { env } from '@documenso/lib/utils/env';
|
|
import { PlainClient } from '@team-plain/typescript-sdk';
|
|
|
|
export const plainClient = new PlainClient({
|
|
apiKey: env('NEXT_PRIVATE_PLAIN_API_KEY') ?? '',
|
|
});
|