func()

in code/app/storage.go [231:238]


func (is Images) JSONBytes() ([]byte, error) {
	bytes, err := json.Marshal(is)
	if err != nil {
		return []byte{}, fmt.Errorf("could not marshal json for response: %s", err)
	}

	return bytes, nil
}