├── .editorconfig ├── .github ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── cog-enhancement.md │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── TRANSLATING.md └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── Make.ps1 ├── Makefile ├── README.md ├── catfact ├── __init__.py ├── catfact.py └── info.json ├── info.json ├── lenny ├── __init__.py ├── info.json └── lenny.py ├── make.bat ├── make.sh ├── massdm ├── __init__.py ├── info.json ├── massdm.py └── safemodels.py ├── nestedcommands ├── __init__.py ├── errors.py ├── info.json └── nestedcommands.py ├── pyproject.toml ├── randimals ├── __init__.py ├── errors.py ├── info.json └── randimals.py ├── requirements.txt ├── streamrole ├── __init__.py ├── info.json └── streamrole.py └── welcome ├── __init__.py ├── enums.py ├── errors.py ├── info.json ├── safemodels.py └── welcome.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @tmercswims 2 | -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/cog-enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/ISSUE_TEMPLATE/cog-enhancement.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/TRANSLATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/TRANSLATING.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/LICENSE -------------------------------------------------------------------------------- /Make.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/Make.ps1 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/README.md -------------------------------------------------------------------------------- /catfact/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/catfact/__init__.py -------------------------------------------------------------------------------- /catfact/catfact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/catfact/catfact.py -------------------------------------------------------------------------------- /catfact/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/catfact/info.json -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/info.json -------------------------------------------------------------------------------- /lenny/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/lenny/__init__.py -------------------------------------------------------------------------------- /lenny/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/lenny/info.json -------------------------------------------------------------------------------- /lenny/lenny.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/lenny/lenny.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/make.bat -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/make.sh -------------------------------------------------------------------------------- /massdm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/massdm/__init__.py -------------------------------------------------------------------------------- /massdm/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/massdm/info.json -------------------------------------------------------------------------------- /massdm/massdm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/massdm/massdm.py -------------------------------------------------------------------------------- /massdm/safemodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/massdm/safemodels.py -------------------------------------------------------------------------------- /nestedcommands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/nestedcommands/__init__.py -------------------------------------------------------------------------------- /nestedcommands/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/nestedcommands/errors.py -------------------------------------------------------------------------------- /nestedcommands/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/nestedcommands/info.json -------------------------------------------------------------------------------- /nestedcommands/nestedcommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/nestedcommands/nestedcommands.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /randimals/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/randimals/__init__.py -------------------------------------------------------------------------------- /randimals/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/randimals/errors.py -------------------------------------------------------------------------------- /randimals/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/randimals/info.json -------------------------------------------------------------------------------- /randimals/randimals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/randimals/randimals.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/requirements.txt -------------------------------------------------------------------------------- /streamrole/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/streamrole/__init__.py -------------------------------------------------------------------------------- /streamrole/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/streamrole/info.json -------------------------------------------------------------------------------- /streamrole/streamrole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/streamrole/streamrole.py -------------------------------------------------------------------------------- /welcome/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/welcome/__init__.py -------------------------------------------------------------------------------- /welcome/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/welcome/enums.py -------------------------------------------------------------------------------- /welcome/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/welcome/errors.py -------------------------------------------------------------------------------- /welcome/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/welcome/info.json -------------------------------------------------------------------------------- /welcome/safemodels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/welcome/safemodels.py -------------------------------------------------------------------------------- /welcome/welcome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tmercswims/tmerc-cogs/HEAD/welcome/welcome.py --------------------------------------------------------------------------------