Cleaned up comments

This commit is contained in:
Chris Troutner
2023-10-28 09:50:12 -07:00
parent f4f142dc48
commit a3102a0278
5 changed files with 1 additions and 18 deletions
-4
View File
@@ -14,8 +14,4 @@ if (env === 'test') {
config = production
}
// const importStr = `./env/${env}.js`
// console.log('importStr: ', importStr)
// import config from importStr
export default Object.assign({}, common, config)
-3
View File
@@ -53,7 +53,4 @@ function applyPassportMods (passport) {
return true
}
// For testing
// export default { passport, passportCallback };
// export default applyPassportMods
export { applyPassportMods, passportCallback }
-4
View File
@@ -59,10 +59,6 @@ class IpfsRouter {
app.use(this.router.routes())
app.use(this.router.allowedMethods())
}
// async getStatus (ctx, next) {
// await _this.ipfsRESTController.getStatus(ctx, next)
// }
}
// module.exports = BchRouter
-6
View File
@@ -21,15 +21,9 @@ class UseCases {
// Run any startup Use Cases at the start of the app.
async start () {
// try {
console.log('Async Use Cases have been started.')
return true
// } catch (err) {
// console.error('Error in use-cases/index.js/start()')
// // console.log(err)
// throw err
// }
}
}
@@ -1,5 +1,5 @@
/*
Unit tests for the REST API handler for the /users endpoints.
Unit tests for the REST API handler for the /ipfs endpoints.
*/
// Public npm libraries