2019-02-02 16:18:25 +08:00
|
|
|
// Copyright 2017 gf Author(https://github.com/gogf/gf). 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-29 16:03:30 +08:00
|
|
|
|
2017-11-23 10:21:28 +08:00
|
|
|
package ghttp
|
|
|
|
|
|
2020-02-11 10:00:10 +08:00
|
|
|
// Controller is the base struct for controller.
|
2017-12-12 17:25:50 +08:00
|
|
|
type Controller interface {
|
2019-06-19 09:06:52 +08:00
|
|
|
Init(*Request)
|
|
|
|
|
Shut()
|
2017-12-11 18:21:30 +08:00
|
|
|
}
|