This commit is starting a modification so that each platform has its own execution control, backups, settings, etc ... some features will be available globally for all platforms, see the wiki. Example: Start bedrock server: * Old: ```js const bdsCore = require("./"); const bedrock = await bdsCore.Server("bedrock", ...); bedrock.log.on("all", console.log); ``` * New: ```js const bedrockPlatform = require("./platform/bedrock/index"); const bedrock = await bedrockPlatform.server.startServer(); bedrock.log.on("all", console.log); ```