(ctx context.Context, workflowID string)
| 116 | // SessionManager 会话管理器接口 |
| 117 | type SessionManager interface { |
| 118 | CreateSession(ctx context.Context, workflowID string) (*session.Session, error) |
| 119 | GetSession(sessionID string) (*session.Session, error) |
| 120 | CloseSession(sessionID string) error |
| 121 | } |