mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
25 lines
432 B
Go
25 lines
432 B
Go
package target
|
|
|
|
import (
|
|
"io"
|
|
"bytes"
|
|
)
|
|
|
|
type InMemoryTarget struct {
|
|
Files map[string][]byte
|
|
}
|
|
|
|
func (t *InMemoryTarget) Publish(label string, reader io.Reader) (err error) {
|
|
if t.Files == nil {
|
|
t.Files = make(map[string][]byte)
|
|
}
|
|
bytes := new(bytes.Buffer)
|
|
bytes.ReadFrom(reader)
|
|
t.Files[label] = bytes.Bytes()
|
|
return
|
|
}
|
|
|
|
func (t *InMemoryTarget) Translate(label string) (dest string, err error) {
|
|
return label, nil
|
|
}
|
|
|