(context types.IListContext)
| 16 | } |
| 17 | |
| 18 | func (self *ListControllerFactory) Create(context types.IListContext) *ListController { |
| 19 | return &ListController{ |
| 20 | baseController: baseController{}, |
| 21 | c: self.c, |
| 22 | context: context, |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | type ListController struct { |
| 27 | baseController |
no outgoing calls