├── .env ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature_request.yml └── workflows │ └── docker-image.yml ├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── banner.png ├── header.png └── logo.png ├── docs ├── index.html ├── script.js └── styles.css ├── main.py ├── manifest.json ├── privacy-policy.md ├── requirements.txt └── terms-of-service.md /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/.env -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/workflows/docker-image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/.github/workflows/docker-image.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/assets/header.png -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/assets/logo.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/docs/styles.css -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/main.py -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/manifest.json -------------------------------------------------------------------------------- /privacy-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/privacy-policy.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | discord.py 2 | python-dotenv 3 | aiosqlite 4 | -------------------------------------------------------------------------------- /terms-of-service.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kenhendricks00/FixEmbed/HEAD/terms-of-service.md --------------------------------------------------------------------------------