1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 19:34:52 +01:00
gojekyll/pages/static_file.go
2017-09-02 13:53:50 -04:00

25 lines
419 B
Go

package pages
import (
"io"
"os"
)
// A StaticFile is a static file. (Lint made me say this.)
type StaticFile struct {
file
}
// IsStatic is in the File interface.
func (p *StaticFile) IsStatic() bool { return true }
func (p *StaticFile) Write(w io.Writer) error {
in, err := os.Open(p.filename)
if err != nil {
return err
}
defer in.Close() // nolint: errcheck, gas
_, err = io.Copy(w, in)
return err
}