From cc3e890ccd9153e3d0028c729d3566c98dc0ed75 Mon Sep 17 00:00:00 2001 From: oudecheng <13802883547@139.com> Date: Fri, 22 May 2026 10:47:55 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B7=BB=E5=8A=A0=20list=5Fskill=5Feve?= =?UTF-8?q?nts=20=E6=96=B9=E6=B3=95=E5=88=B0=20SkillEventRepository?= =?UTF-8?q?=EF=BC=8C=E6=94=AF=E6=8C=81=E5=8F=AF=E9=80=89=20session=5Fid=20?= =?UTF-8?q?=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/storage/ports.rs | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/storage/ports.rs b/src/storage/ports.rs index f236554..d27cb2c 100644 --- a/src/storage/ports.rs +++ b/src/storage/ports.rs @@ -343,4 +343,9 @@ impl SkillEventRepository for super::SessionStore { } fn list_skill_events( - \ No newline at end of file + &self, + session_id: Option<&str>, + ) -> Result, StorageError> { + super::SessionStore::list_skill_events(self, session_id) + } +}