plaintext.rt.js 135 B

123456
  1. module.exports = {
  2. GET: ( { res } ) => {
  3. res.headers['content-type'] = 'text/plain'
  4. return 'Hello, World!'
  5. }
  6. }