diff --git a/application/api/example/data.js b/application/api/example/data.js new file mode 100644 index 0000000..3f6208c --- /dev/null +++ b/application/api/example/data.js @@ -0,0 +1,9 @@ +({ + access: 'public', + + method: async () => { + return 'Hello world'; + }, + + returns: 'string', +}); diff --git a/package.json b/package.json index 4c7306a..11a5602 100644 --- a/package.json +++ b/package.json @@ -8,6 +8,7 @@ "node": "18 || 20" }, "scripts": { + "dev": "node server.js", "start": "node server.js", "test": "MODE=test node server.js", "eslint:check": "eslint .",