fix memory

This commit is contained in:
jxxghp 2023-09-22 11:42:34 +08:00
parent 382d9ed525
commit fed754f03a

View File

@ -6,9 +6,10 @@ from cachetools import cached, TTLCache
from app import schemas
from app.chain import ChainBase
from app.schemas import MediaType
from app.utils.singleton import Singleton
class TmdbChain(ChainBase):
class TmdbChain(ChainBase, metaclass=Singleton):
"""
TheMovieDB处理链
"""