mirror of
https://github.com/datarhei/core.git
synced 2025-10-06 08:27:08 +08:00
25 lines
339 B
Go
25 lines
339 B
Go
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
|
|
|
|
Filesystem fs.Filesystem
|
|
|
|
Cache cache.Cacher
|
|
}
|