phodal/iot-coap

View on GitHub
lib/database/iot_db.js

Summary

Maintainability
A
0 mins
Test Coverage
function IOT_DB() {
    'use strict';
    return;
}

IOT_DB.prototype.errorHandler = function (err) {
    'use strict';
    if (err !== null) {
        throw err;
    }
};

module.exports = IOT_DB;