├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ ├── FEATURE_REQUEST.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── README.md └── assets │ ├── command-examples │ ├── dshell-exec-command-example.png │ └── dshell-root-command-example.png │ └── readme │ ├── dshell-example.gif │ └── dshell-logo.png ├── .gitignore ├── Documentation ├── Basics.md ├── Examples.md ├── FAQ.md ├── Message Commands.md ├── README.md └── Shell Commands.md ├── LICENSE ├── dshell ├── __init__.py ├── cog.py └── jskshell.py └── setup.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: nimboss -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/README.md -------------------------------------------------------------------------------- /.github/assets/command-examples/dshell-exec-command-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/assets/command-examples/dshell-exec-command-example.png -------------------------------------------------------------------------------- /.github/assets/command-examples/dshell-root-command-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/assets/command-examples/dshell-root-command-example.png -------------------------------------------------------------------------------- /.github/assets/readme/dshell-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/assets/readme/dshell-example.gif -------------------------------------------------------------------------------- /.github/assets/readme/dshell-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.github/assets/readme/dshell-logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation/Basics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/Documentation/Basics.md -------------------------------------------------------------------------------- /Documentation/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/Documentation/Examples.md -------------------------------------------------------------------------------- /Documentation/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/Documentation/FAQ.md -------------------------------------------------------------------------------- /Documentation/Message Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/Documentation/Message Commands.md -------------------------------------------------------------------------------- /Documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/Documentation/README.md -------------------------------------------------------------------------------- /Documentation/Shell Commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/Documentation/Shell Commands.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/LICENSE -------------------------------------------------------------------------------- /dshell/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/dshell/__init__.py -------------------------------------------------------------------------------- /dshell/cog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/dshell/cog.py -------------------------------------------------------------------------------- /dshell/jskshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/dshell/jskshell.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ImNimboss/dshell/HEAD/setup.py --------------------------------------------------------------------------------