diff options
author | 2021-07-17 20:10:11 +0100 | |
---|---|---|
committer | 2021-07-17 20:10:11 +0100 | |
commit | d3d81582cd7005df16fe3f5306e6afbed75bdb74 (patch) | |
tree | 323a7441f6c4d32833fee922208121497c77a9de /arthur/__init__.py |
Initial commit
Diffstat (limited to 'arthur/__init__.py')
-rw-r--r-- | arthur/__init__.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arthur/__init__.py b/arthur/__init__.py new file mode 100644 index 0000000..a7efb0b --- /dev/null +++ b/arthur/__init__.py @@ -0,0 +1,7 @@ +"""King Arthur is Python Discord's DevOps utility bot.""" +from functools import partial + +import loguru + +logger = loguru.logger.opt(colors=True) +logger.opt = partial(logger.opt, colors=True) |