ghttp_server_session.go 443 B

12345678910111213
  1. // Copyright 2017 gf Author(https://github.com/gogf/gf). All Rights Reserved.
  2. //
  3. // This Source Code Form is subject to the terms of the MIT License.
  4. // If a copy of the MIT was not distributed with this file,
  5. // You can obtain one at https://github.com/gogf/gf.
  6. package ghttp
  7. import "github.com/gogf/gf/os/gsession"
  8. // Session is actually a alias of gsession.Session,
  9. // which is bound to a single request.
  10. type Session = gsession.Session