11 lines
192 B
Python
11 lines
192 B
Python
|
|
# coding=utf-8
|
|||
|
|
""" Lasciate ogni speranza voi ch’entrate """
|
|||
|
|
from bot import setup_modules, start_modules
|
|||
|
|
from time import sleep
|
|||
|
|
|
|||
|
|
setup_modules()
|
|||
|
|
start_modules()
|
|||
|
|
|
|||
|
|
while True:
|
|||
|
|
sleep(0.1)
|