hello.js 289 B

1234567891011
  1. function hello(r) {
  2. r.headersOut["Content-Type"] = "text/plain; charset=UTF-8";
  3. r.return(200, "Hello, World!");
  4. }
  5. function json(r) {
  6. r.headersOut["Content-Type"] = "application/json";
  7. r.return(200, JSON.stringify({ message: "Hello, World!" }));
  8. }
  9. export default { hello, json };