소스 검색

Fixing bug with Ubuntu server unexpected token error on startup.

localadmin 6 년 전
부모
커밋
848d0fd223
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      server/imageAPI.js

+ 2 - 2
server/imageAPI.js 파일 보기

@@ -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
 };