Files
ChemaVX ba08536337
Build & Deploy ResearchOwl / build (push) Failing after 1m38s
feat: initial ResearchOwl
2026-04-27 13:49:07 +00:00

13 lines
211 B
Python

import structlog
from src.bot.bot import run
structlog.configure(
processors=[
structlog.stdlib.add_log_level,
structlog.dev.ConsoleRenderer(),
]
)
if __name__ == "__main__":
run()