This commit is contained in:
crusader 2018-04-26 17:00:32 +09:00
parent 134a725006
commit 8fb9ee1301

View File

@ -1,8 +1,9 @@
package servlet
import (
"git.loafle.net/commons/server-go"
"sync"
"git.loafle.net/commons/server-go"
)
type Session struct {
@ -32,4 +33,4 @@ func ReleaseSession(_session *Session) {
_session.ServletCtx = nil
sessionPool.Put(_session)
}
}