datarhei-dragonfork-core/http/fs/fs.go

26 lines
364 B
Go
Raw Permalink Normal View History

2023-01-31 08:45:58 -05:00
package fs
import (
"github.com/datarhei/core/v16/http/cache"
"github.com/datarhei/core/v16/io/fs"
)
type FS struct {
Name string
Mountpoint string
AllowWrite bool
EnableAuth bool
Username string
Password string
DefaultFile string
DefaultContentType string
Gzip bool
Filesystem fs.Filesystem
Cache cache.Cacher
}