wip: searcher

This commit is contained in:
2023-08-28 20:28:40 +08:00
parent b180976284
commit 316b02cd1b
4 changed files with 119 additions and 0 deletions

View File

@ -0,0 +1,6 @@
import json
from typing import List, Optional
def recover_search_title(db_value: Optional[str]) -> List[str]:
return json.loads(db_value) if db_value else []