Skip to content

Commit

Permalink
Added json body parser
Browse files Browse the repository at this point in the history
  • Loading branch information
praveen-kaia committed Dec 16, 2024
1 parent 106a53a commit 4685c2b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ var StatsData = {};
const { Flipside } = require("@flipsidecrypto/sdk");
require("dotenv").config();

app.use(express.json({ limit: "50mb" }));
app.use(express.urlencoded({ extended: false }));

require("./services/partner.js");
const kaiachainService = require("./services/kaiachainService.js");
const faucetService = require('./services/faucetService.js');
Expand Down

0 comments on commit 4685c2b

Please sign in to comment.