Files
cloudron-box/src/network/noop.js
Girish Ramakrishnan 12e073e8cf use node: prefix for requires
mostly because code is being autogenerated by all the AI stuff using
this prefix. it's also used in the stack trace.
2025-08-14 12:55:35 +05:30

35 lines
578 B
JavaScript

'use strict';
exports = module.exports = {
getIPv4,
getIPv6,
testIPv4Config,
testIPv6Config
};
const assert = require('node:assert');
async function getIPv4(config) {
assert.strictEqual(typeof config, 'object');
return null;
}
async function getIPv6(config) {
assert.strictEqual(typeof config, 'object');
return null;
}
async function testIPv4Config(config) {
assert.strictEqual(typeof config, 'object');
return null;
}
async function testIPv6Config(config) {
assert.strictEqual(typeof config, 'object');
return null;
}