UNPKG

@hellocoop/quickstart

Version:

A CLI and module to start the Hello Quickstart web app and return a client_id

15 lines (10 loc) 275 B
// fastify.mjs import express from './express.mjs' const defaultOptions = { integration: 'quickstart-fastify', suffix: ' Fastify App', } const fastify = async (options) => { await express({ ...defaultOptions, ...options }, 'fastify') } export default fastify