mirror of
https://github.com/danog/gojekyll.git
synced 2024-11-26 19:34:52 +01:00
25 lines
419 B
Go
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
|
|
}
|