UNPKG

@corejam/base

Version:

A scaffolding for building progressive GraphQL powered jamstack applications

9 lines 303 B
import { Client } from "faunadb"; import { getDataClient } from "../../../PluginManager"; export const FaunaClient = () => getDataClient("fauna", () => { const { SECRET_KEY = "" } = process.env; return new Client({ secret: SECRET_KEY, }); }, true); //# sourceMappingURL=Client.js.map