├── .gitignore ├── LICENSE ├── README.md ├── docref ├── __init__.py ├── docref.py ├── errors.py ├── info.json └── types.py ├── errorlogs ├── __init__.py ├── errorlogs.py ├── info.json └── reaction_menu.py ├── info.json ├── poetry.lock ├── pyproject.toml ├── reactkarma ├── __init__.py ├── info.json └── reactkarma.py ├── sticky ├── __init__.py ├── info.json └── sticky.py ├── streamroles ├── __init__.py ├── info.json ├── streamroles.py └── types.py ├── strikes ├── __init__.py ├── data │ └── ddl.sql ├── info.json └── strikes.py ├── updatered ├── __init__.py ├── info.json └── updatered.py └── welcomecount ├── __init__.py ├── info.json └── welcomecount.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/README.md -------------------------------------------------------------------------------- /docref/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/docref/__init__.py -------------------------------------------------------------------------------- /docref/docref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/docref/docref.py -------------------------------------------------------------------------------- /docref/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/docref/errors.py -------------------------------------------------------------------------------- /docref/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/docref/info.json -------------------------------------------------------------------------------- /docref/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/docref/types.py -------------------------------------------------------------------------------- /errorlogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/errorlogs/__init__.py -------------------------------------------------------------------------------- /errorlogs/errorlogs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/errorlogs/errorlogs.py -------------------------------------------------------------------------------- /errorlogs/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/errorlogs/info.json -------------------------------------------------------------------------------- /errorlogs/reaction_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/errorlogs/reaction_menu.py -------------------------------------------------------------------------------- /info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/info.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reactkarma/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/reactkarma/__init__.py -------------------------------------------------------------------------------- /reactkarma/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/reactkarma/info.json -------------------------------------------------------------------------------- /reactkarma/reactkarma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/reactkarma/reactkarma.py -------------------------------------------------------------------------------- /sticky/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/sticky/__init__.py -------------------------------------------------------------------------------- /sticky/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/sticky/info.json -------------------------------------------------------------------------------- /sticky/sticky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/sticky/sticky.py -------------------------------------------------------------------------------- /streamroles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/streamroles/__init__.py -------------------------------------------------------------------------------- /streamroles/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/streamroles/info.json -------------------------------------------------------------------------------- /streamroles/streamroles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/streamroles/streamroles.py -------------------------------------------------------------------------------- /streamroles/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/streamroles/types.py -------------------------------------------------------------------------------- /strikes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/strikes/__init__.py -------------------------------------------------------------------------------- /strikes/data/ddl.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/strikes/data/ddl.sql -------------------------------------------------------------------------------- /strikes/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/strikes/info.json -------------------------------------------------------------------------------- /strikes/strikes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/strikes/strikes.py -------------------------------------------------------------------------------- /updatered/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/updatered/__init__.py -------------------------------------------------------------------------------- /updatered/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/updatered/info.json -------------------------------------------------------------------------------- /updatered/updatered.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/updatered/updatered.py -------------------------------------------------------------------------------- /welcomecount/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/welcomecount/__init__.py -------------------------------------------------------------------------------- /welcomecount/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/welcomecount/info.json -------------------------------------------------------------------------------- /welcomecount/welcomecount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tobotimus/Tobo-Cogs/HEAD/welcomecount/welcomecount.py --------------------------------------------------------------------------------