Procházet zdrojové kódy

Fixing bug with Ubuntu server unexpected token error on startup.

localadmin před 6 roky
rodič
revize
848d0fd223
1 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 2 2
      server/imageAPI.js

+ 2 - 2
server/imageAPI.js Zobrazit soubor

@@ -47,6 +47,6 @@ var get = function(req, res){
47 47
 };
48 48
 
49 49
 module.exports = {
50
-  post,
51
-  get
50
+  post: post,
51
+  get: get
52 52
 };