gf/net/ghttp/ghttp_server_session.go

14 lines
440 B
Go
Raw Normal View History

2021-01-17 21:46:25 +08:00
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
2017-12-29 16:03:30 +08:00
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
2017-12-31 18:19:58 +08:00
2017-12-31 12:15:04 +08:00
package ghttp
2017-12-11 18:21:30 +08:00
2021-10-11 21:41:56 +08:00
import "github.com/gogf/gf/v2/os/gsession"
2019-07-28 11:50:12 +08:00
2022-03-19 17:58:21 +08:00
// Session is actually an alias of gsession.Session,
// which is bound to a single request.
type Session = gsession.Session