all repos — homestead @ 40f8ccfdf0c8a5855cdc211096f86459b28a261b

Code for my website

shared/storage/file.go (view raw)

package storage

import (
	"time"

	"alin.ovh/homestead/shared/buffer"
)

type File struct {
	Path         string
	FSPath       string
	ContentType  string
	LastModified time.Time
	Etag         string
	Title        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
}