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