Added hello world

This commit is contained in:
Daniel
2020-03-02 08:35:31 +01:00
parent c6eb21ec51
commit 125cb6e5c2
5 changed files with 29 additions and 2 deletions

3
hello/world.js Normal file
View File

@@ -0,0 +1,3 @@
module.exports = class say {
hello(req) { return `Hello ${req.data.to}!` }
}