import os import sys from pathlib import Path ROOT = Path(__file__).resolve().parents[1] if str(ROOT) not in sys.path: sys.path.insert(0, str(ROOT)) from app.store import ConversationStore def main(): store = ConversationStore() print('backend=', store.backend) print('sessions_table=', store.sessions_table) print('events_table=', store.events_table) print('init_ok=true') if __name__ == '__main__': main()