├── .github └── FUNDING.yml ├── LICENSE ├── Transcription_BOT.gif ├── config.json ├── index.js ├── package.json ├── readme.md └── transcript.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/LICENSE -------------------------------------------------------------------------------- /Transcription_BOT.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/Transcription_BOT.gif -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | { 2 | "TOKEN": "" 3 | } -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/readme.md -------------------------------------------------------------------------------- /transcript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-Transcript/HEAD/transcript.js --------------------------------------------------------------------------------