Files
the-biergarten-app/src/config/sparkpost/client.ts
2023-04-11 23:32:06 -04:00

7 lines
153 B
TypeScript

import SparkPost from 'sparkpost';
import { SPARKPOST_API_KEY } from '../env';
const client = new SparkPost(SPARKPOST_API_KEY);
export default client;