| 20 | ) |
| 21 | |
| 22 | type httpSession struct { |
| 23 | peer.CoreContextSet |
| 24 | *peer.CoreProcBundle |
| 25 | req *http.Request |
| 26 | resp http.ResponseWriter |
| 27 | |
| 28 | // 单独保存的保存Peer接口 |
| 29 | peerInterface cellnet.Peer |
| 30 | |
| 31 | t *template.Template |
| 32 | |
| 33 | respond bool |
| 34 | err error |
| 35 | } |
| 36 | |
| 37 | func (self *httpSession) Match(method, url string) bool { |
| 38 |
nothing calls this directly
no outgoing calls
no test coverage detected