Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
919 changes: 919 additions & 0 deletions maxcoin/COMMIT_EDITMSG

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions maxcoin/main.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
const CoinAPI = require("./services/CoinAPI");
const MongoBackend = require("./services/backend/MongoBackend");

async function run() {
const coinAPI = new CoinAPI();
return coinAPI.fetch();
const mongoBackend = new MongoBackend();
return mongoBackend.max();
}

run()
Expand Down
Loading