This repository has been archived on 2024-01-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
Matheus Sampaio Queiroga 4caacd1b87 Update path control and init changes to platforms
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);
    ```
2022-05-24 00:50:38 +00:00
..
2022-01-07 23:29:29 -03:00