11 lines
326 B
Python
11 lines
326 B
Python
import bot2.main
|
|
import persistence.main
|
|
|
|
import logging
|
|
logging.basicConfig(
|
|
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s', level=logging.INFO
|
|
)
|
|
logger = logging.getLogger(__name__)
|
|
prst = persistence.main.PersistentDict("persistence/prst.json")
|
|
|
|
test = bot2.main.ChatBot("Test", ".1", "HW", prst, logger) |