From 63a00527b92f7af4843205c6c452615403037cbc Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Sun, 1 Jun 2025 18:01:04 -0400 Subject: [PATCH] Add Conn() getter to BaseSession --- common/DOC.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common/DOC.md b/common/DOC.md index 97e6dbb0..6b898e23 100644 --- a/common/DOC.md +++ b/common/DOC.md @@ -339,6 +339,12 @@ type BaseSession struct { func (bs *BaseSession) Close() error ``` +#### func (*BaseSession) Conn + +```go +func (bs *BaseSession) Conn() net.Conn +``` + #### func (*BaseSession) From ```go