Value endpoint

node v10.24.1
version: 1.0.0
endpointsharetweet
const express = require("@runkit/runkit/express-endpoint/1.0.0"); const app = express(exports); app.post('/value', async (req, res) => { res.send({ value: 'foo' }); });
Loading…

no comments

    sign in to comment