(m Machine)
| 153 | type readBootFile string |
| 154 | |
| 155 | func (b readBootFile) BootSpec(m Machine) (*Spec, error) { return nil, nil } |
| 156 | func (b readBootFile) ReadBootFile(id ID) (io.ReadCloser, int64, error) { |
| 157 | d := fmt.Sprintf("%s %s", id, b) |
| 158 | return ioutil.NopCloser(bytes.NewBuffer([]byte(d))), int64(len(d)), nil |
nothing calls this directly
no outgoing calls
no test coverage detected