queenamdi-functions-beta 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,6 +3,14 @@ const util = require("util");
3
3
  const readdir = util.promisify(fs.readdir);
4
4
 
5
5
  module.exports.addCommands = async (Path) => {
6
+ let commandsPrimary = {};
7
+ let commandsPrivate = {};
8
+ let commandsAdmin = {};
9
+
10
+ let reactionPrimary = {};
11
+ let reactionPrivate = {};
12
+ let reactionAdmin = {};
13
+
6
14
  let path = Path + "/primary/";
7
15
  let filenames = await readdir(path);
8
16
  filenames.forEach((file) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "queenamdi-functions-beta",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "NPM Package for Queen Amdi Public version.",
5
5
  "main": "index.js",
6
6
  "directories": {