Files
sapper/test/app/routes/fünke.json.js
2018-09-02 23:00:39 -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"
));
}