10 lines
272 B
Python
10 lines
272 B
Python
"""J.A.R.V.I.S. background task handlers."""
|
|
from jarvis.tasks import twitter, unban, unlock, unwarn
|
|
|
|
|
|
def init() -> None:
|
|
"""Start the background task handlers."""
|
|
unban.unban.start()
|
|
unlock.unlock.start()
|
|
unwarn.unwarn.start()
|
|
twitter.tweets.start()
|