API Endpoints (Optional)
if (namespace.app) {
namespace.express('post', '/accept-cid', async (req, res) => {
const cid = req.body.cid;
const result = dosomething(cid)
res.status(200).json({ message: 'cid added to the submission list' });
})
}Last updated