From 1152bd94ad0620a39689ee2cb6210add0afafa31 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B4=9B=E6=B0=B4=E5=B1=85=E5=AE=A4?= Date: Sun, 31 Jul 2022 16:18:28 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20=E4=BF=AE=E5=A4=8D=20`cookie`=20?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E4=BC=A0=E5=8F=82=E9=94=99=E8=AF=AF=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/cookies/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cookies/__init__.py b/app/cookies/__init__.py index d18d90ca..c4939d5c 100644 --- a/app/cookies/__init__.py +++ b/app/cookies/__init__.py @@ -7,5 +7,5 @@ from utils.mysql import MySQL @listener_service() def create_cookie_service(mysql: MySQL): _repository = CookiesRepository(mysql) - _service = CookiesService(_repository, _cache) + _service = CookiesService(_repository) return _service