aboutsummaryrefslogtreecommitdiff
path: root/bot/_bs/tasks.py
diff options
context:
space:
mode:
authorRoman Gräf <romangraef@loves.dicksinhisan.us>2020-09-05 23:19:39 +0200
committerRoman Gräf <romangraef@loves.dicksinhisan.us>2020-09-05 23:19:39 +0200
commit2b10e99265f816f34e8530bac6b88a4ebf05b7f7 (patch)
tree1fcfc6edc27a646f6b1323505365f160e52968c9 /bot/_bs/tasks.py
downloaddiscord-bootstrap-2b10e99265f816f34e8530bac6b88a4ebf05b7f7.tar.gz
discord-bootstrap-2b10e99265f816f34e8530bac6b88a4ebf05b7f7.tar.bz2
discord-bootstrap-2b10e99265f816f34e8530bac6b88a4ebf05b7f7.zip
Initial commitHEADmaster
Diffstat (limited to 'bot/_bs/tasks.py')
-rw-r--r--bot/_bs/tasks.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/_bs/tasks.py b/bot/_bs/tasks.py
new file mode 100644
index 0000000..29c3883
--- /dev/null
+++ b/bot/_bs/tasks.py
@@ -0,0 +1,10 @@
+from functools import partial
+
+tasks = {}
+
+
+def task(name: str):
+ return partial(tasks.__setitem__, name)
+
+
+__all__ = ['task']