ghttp_controller.go 382 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. // Controller is the base struct for controller.
  8. type Controller interface {
  9. Init(*Request)
  10. Shut()
  11. }