"""Entrypoint for King Arthur."""fromarthurimportloggerfromarthur.botimportKingArthurfromarthur.configimportCONFIG@logger.catch()defstart()->None:"""Entrypoint for King Arthur."""arthur=KingArthur()arthur.run(CONFIG.token)if__name__=="__main__":start()