├── .gitignore ├── Guide.md ├── LICENSE ├── README.md ├── config.json ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /Guide.md: -------------------------------------------------------------------------------- 1 | ## Guide Coming soon 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whirlxd/Select-Menu-Roles/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whirlxd/Select-Menu-Roles/HEAD/README.md -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whirlxd/Select-Menu-Roles/HEAD/config.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whirlxd/Select-Menu-Roles/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/whirlxd/Select-Menu-Roles/HEAD/package.json --------------------------------------------------------------------------------