Is is possible to use other modules ( for example `fs`, `mysql` and `redis`) with custom realms? Like this: ```js ServerCommands.register('/file', (player, call) => { const fs = require("fs"); player.sendMessage(fs.readFileSync(__dirname + '/file.txt')); }); ```