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,
|
2019-02-02 16:18:25 +08:00
|
|
|
// 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
|
|
|
|
2019-09-11 21:19:45 +08:00
|
|
|
import "github.com/gogf/gf/os/gsession"
|
2019-07-28 11:50:12 +08:00
|
|
|
|
2020-05-17 14:33:21 +08:00
|
|
|
// Session is actually a alias of gsession.Session,
|
|
|
|
// which is bound to a single request.
|
2019-09-11 21:19:45 +08:00
|
|
|
type Session = gsession.Session
|