mirror of
https://github.com/kevin-DL/sapper.git
synced 2026-01-15 04:14:46 +00:00
9 lines
162 B
JavaScript
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"
|
|
));
|
|
} |