blob: 38824b69f015a4452a7a7bafdc5f1072a78103ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package storage
import (
"time"
"go.alanpearce.eu/website/internal/buffer"
)
type File struct {
Path string
ContentType string
LastModified time.Time
Etag string
Encodings map[string]*buffer.Buffer
}
func (f *File) AvailableEncodings() []string {
encs := make([]string, 0, len(f.Encodings))
for enc := range f.Encodings {
encs = append(encs, enc)
}
return encs
}
|