aboutsummaryrefslogtreecommitdiffstats
path: root/arthur/__init__.py
diff options
context:
space:
mode:
authorGravatar Joe Banks <[email protected]>2021-07-17 20:10:11 +0100
committerGravatar Joe Banks <[email protected]>2021-07-17 20:10:11 +0100
commitd3d81582cd7005df16fe3f5306e6afbed75bdb74 (patch)
tree323a7441f6c4d32833fee922208121497c77a9de /arthur/__init__.py
Initial commit
Diffstat (limited to 'arthur/__init__.py')
-rw-r--r--arthur/__init__.py7
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)