diff --git a/core/src/main.js b/core/src/main.js index 9c0e7401..9e00bb36 100644 --- a/core/src/main.js +++ b/core/src/main.js @@ -1,3 +1,13 @@ +/** + * BetterDiscord Core Entry + * Copyright (c) 2015-present JsSucks - https://github.com/JsSucks + * All rights reserved. + * https://github.com/JsSucks - https://betterdiscord.net + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. +*/ + const { Utils, FileUtils, BDIpc, Config } = require('./modules'); const Common = {}; diff --git a/core/src/modules/bdipc.js b/core/src/modules/bdipc.js index 11909972..5215997c 100644 --- a/core/src/modules/bdipc.js +++ b/core/src/modules/bdipc.js @@ -1,3 +1,13 @@ +/** + * BetterDiscord IPC Module + * Copyright (c) 2015-present JsSucks - https://github.com/JsSucks + * All rights reserved. + * https://github.com/JsSucks - https://betterdiscord.net + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. +*/ + const { ipcMain } = require('electron'); class BDIpcEvent { diff --git a/core/src/modules/config.js b/core/src/modules/config.js index a8ae53f8..4f1cd5dc 100644 --- a/core/src/modules/config.js +++ b/core/src/modules/config.js @@ -1,3 +1,13 @@ +/** + * BetterDiscord Config Module + * Copyright (c) 2015-present JsSucks - https://github.com/JsSucks + * All rights reserved. + * https://github.com/JsSucks - https://betterdiscord.net + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. +*/ + class Config { constructor(args) { diff --git a/core/src/modules/utils.js b/core/src/modules/utils.js index 2e322e05..9c7301f2 100644 --- a/core/src/modules/utils.js +++ b/core/src/modules/utils.js @@ -1,3 +1,13 @@ +/** + * BetterDiscord Utils Module + * Copyright (c) 2015-present JsSucks - https://github.com/JsSucks + * All rights reserved. + * https://github.com/JsSucks - https://betterdiscord.net + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. +*/ + const path = require('path'), fs = require('fs');