From 29d06a040b302abef3b4ec43d90c8eea54bb7698 Mon Sep 17 00:00:00 2001 From: amtoaer Date: Mon, 4 Dec 2023 00:50:22 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E6=B3=A8=E5=86=8C=E5=91=BD=E4=BB=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- entry.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/entry.py b/entry.py index cdf8527..02a4984 100644 --- a/entry.py +++ b/entry.py @@ -4,7 +4,7 @@ import sys import uvloop from loguru import logger -from commands import recheck, upper_thumb +from commands import recheck, refresh_tags, upper_thumb from models import init_model from processor import cleanup, process from settings import settings @@ -18,6 +18,7 @@ async def entry() -> None: ("once", process), ("recheck", recheck), ("upper_thumb", upper_thumb), + ("refresh_tags", refresh_tags), ]: if any(command in _ for _ in sys.argv): logger.info("Running {}...", command)