BaseController is the optional controller interface, if it's completed by the end controller then the BeginRequest and EndRequest are called between the controller's method responsible for the incoming request.
| 15 | // completed by the end controller then the BeginRequest and EndRequest |
| 16 | // are called between the controller's method responsible for the incoming request. |
| 17 | type BaseController interface { |
| 18 | BeginRequest(*context.Context) |
| 19 | EndRequest(*context.Context) |
| 20 | } |
| 21 | |
| 22 | type shared interface { |
| 23 | Name() string |
no outgoing calls
no test coverage detected
searching dependent graphs…