Factor out session handler, introduce entry handler

This commit is contained in:
lash
2025-01-11 08:01:48 +00:00
parent f939a20543
commit 840c22ca89
3 changed files with 17 additions and 71 deletions

View File

@@ -43,6 +43,7 @@ type RequestHandler interface {
Reset(rs RequestSession) (RequestSession, error)
Shutdown()
}
type SessionHandler struct {
RequestHandler
}