rsnext/test/integration/legacy-pkg-gently/pages/api/hello.js

8 lines
179 B
JavaScript
Raw Normal View History

import { Client } from 'faunadb'
export default (_req, res) => {
const client = new Client({ secret: 'foobar' })
console.log(client)
res.send({ message: 'hello world' })
}