| 8 | import "github.com/aceld/zinx/ziface" |
| 9 | |
| 10 | type Chain struct { |
| 11 | req ziface.IcReq |
| 12 | position int |
| 13 | interceptors []ziface.IInterceptor |
| 14 | } |
| 15 | |
| 16 | func NewChain(list []ziface.IInterceptor, pos int, req ziface.IcReq) ziface.IChain { |
| 17 | return &Chain{ |
nothing calls this directly
no outgoing calls
no test coverage detected