feat(bible): added bible cog
All checks were successful
Actions / Lint Code (Pylint) (push) Successful in 18s
Actions / Build Documentation (MkDocs) (push) Successful in 13s

This commit is contained in:
SeaswimmerTheFsh 2024-02-01 17:14:06 -05:00
parent 3398100a0f
commit 39fafede67
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
5 changed files with 62 additions and 0 deletions

5
bible/__init__.py Normal file
View file

@ -0,0 +1,5 @@
from .bible import Bible
async def setup(bot):
await bot.add_cog(Bible(bot))