diff options
author | bob <bcz@cs.brown.edu> | 2019-04-16 11:00:55 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-04-16 11:00:55 -0400 |
commit | bb935a1af68c3684640cf93e04b55324142b05ea (patch) | |
tree | 571369e8b17af15e231e1c22f08d05597ae2e815 /src/server/index.ts | |
parent | b7a766aa5d53686e032b34d7213ad543108f12c3 (diff) | |
parent | 5acba4487b3cb66d194e7e3c4c06c5ed8e2c04b4 (diff) |
Merge branch 'master' into richTextEditor
Diffstat (limited to 'src/server/index.ts')
-rw-r--r-- | src/server/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/index.ts b/src/server/index.ts index 3cbe1ca76..70a7d266c 100644 --- a/src/server/index.ts +++ b/src/server/index.ts @@ -35,7 +35,7 @@ import c = require("crypto"); const MongoStore = require('connect-mongo')(session); const mongoose = require('mongoose'); -const download = (url: string, dest: fs.PathLike) => request.get(url).pipe(fs.createWriteStream(dest));; +const download = (url: string, dest: fs.PathLike) => request.get(url).pipe(fs.createWriteStream(dest)); const mongoUrl = 'mongodb://localhost:27017/Dash'; mongoose.connect(mongoUrl); |