6 lines
134 B
TypeScript
6 lines
134 B
TypeScript
import { Client } from '@notionhq/client';
|
|
|
|
const notion = new Client({ auth: process.env['NOTION_TOKEN'] });
|
|
|
|
export default notion;
|