(msg, url string)
| 126 | } |
| 127 | |
| 128 | func (st *status) addError(msg, url string) { |
| 129 | st.Errors = append(st.Errors, camtypes.StatusError{ |
| 130 | Error: msg, |
| 131 | URL: url, |
| 132 | }) |
| 133 | } |
| 134 | |
| 135 | func (st *status) isHandler(pfx string) bool { |
| 136 | if pfx == st.importerRoot { |