(rw http.ResponseWriter, r *http.Request)
| 214 | } |
| 215 | |
| 216 | func (api *API) handleGet(rw http.ResponseWriter, r *http.Request) { |
| 217 | response, _ := Resolve(api.workingDir(), api.cfg) |
| 218 | httpapi.Write(r.Context(), rw, http.StatusOK, response) |
| 219 | } |
| 220 | |
| 221 | // readInstructionFiles reads instruction files from each given |
| 222 | // directory. Missing directories are silently skipped. Duplicate |