aboutsummaryrefslogtreecommitdiff
path: root/server/controllers/example.js
diff options
context:
space:
mode:
Diffstat (limited to 'server/controllers/example.js')
-rw-r--r--server/controllers/example.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/server/controllers/example.js b/server/controllers/example.js
new file mode 100644
index 0000000..400bafc
--- /dev/null
+++ b/server/controllers/example.js
@@ -0,0 +1,7 @@
+module.exports = {
+ index(req, res) {
+ res.json({
+ status: "success"
+ });
+ }
+};