├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── LICENSE ├── README.md ├── commands ├── info │ ├── help.js │ └── uptime.js └── mod │ └── setlogchannel.js ├── config.json ├── handlers └── command.js ├── index.js ├── logger.js ├── models └── log.js └── package.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/README.md -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /commands/info/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/commands/info/uptime.js -------------------------------------------------------------------------------- /commands/mod/setlogchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/commands/mod/setlogchannel.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/config.json -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/handlers/command.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/index.js -------------------------------------------------------------------------------- /logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/logger.js -------------------------------------------------------------------------------- /models/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/models/log.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yash094/Audit-Log-Bot-Discord/HEAD/package.json --------------------------------------------------------------------------------