aboutsummaryrefslogtreecommitdiff
path: root/e2e-lanthan/server/handlers.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2019-04-06 21:48:16 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2019-04-06 22:39:40 +0900
commitb04eecce7fea8b262411a5817924dc730cbe127a (patch)
tree024c14ce52319af899938ce81ee7107540ccbf7b /e2e-lanthan/server/handlers.js
parentc9a0bf87d0ba81beb1b958c374a40c4b69f4192b (diff)
Replace e2e with lanthan
Diffstat (limited to 'e2e-lanthan/server/handlers.js')
-rw-r--r--e2e-lanthan/server/handlers.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/e2e-lanthan/server/handlers.js b/e2e-lanthan/server/handlers.js
deleted file mode 100644
index 979b4be..0000000
--- a/e2e-lanthan/server/handlers.js
+++ /dev/null
@@ -1,17 +0,0 @@
-const handleText = (body) => {
- return (req, res) => {
- res.writeHead(200, {'Content-Type': 'text/plane'});
- res.end(body);
- }
-}
-
-const handleHtml = (body) => {
- return (req, res) => {
- res.writeHead(200, {'Content-Type': 'text/html'});
- res.end(body);
- }
-}
-
-module.exports = {
- handleText, handleHtml
-}