Files
sapper/test/apps/encoding/src/routes/fünke.json.js
2018-10-07 18:23:43 -04:00

9 lines
162 B
JavaScript

export function get(req, res) {
res.writeHead(200, {
'Content-Type': 'application/json'
});
res.end(JSON.stringify(
"I'm afraid I just blue myself"
));
}