# Path

Path to your folders and files, path will start from your root directory.

Root Directory: The directory where your main file ( index.js or start file ) is.

# Examples

Root 
  ├─── index.js
  └─── commands
    ├─── help.js
    └─── ban.js             
1
2
3
4
5

  var Handler = new Biscord.<Handler>( '/commands' );

1
2
3
Root 
  ├─── index.js
  └─── resources
    └─── commands
      ├─── help.js
      └─── ban.js             
1
2
3
4
5
6

  var Handler = new Biscord.<Handler>( '/resources/commands' );

1
2
3

# Handled Categories

Root 
  ├─── index.js
  └─── commands
    ├─── information
    │  └─── help.js
    └─── ban.js             
1
2
3
4
5
6

Handler that supports Handled Categories ( base folder with another folder inside ) detects folder and files.

The packgae will automatically read the category files and register them.