1 2 3 4 5 6 7 8 9 10
package caddy import "io/fs" type FileSystems interface { Register(k string, v fs.FS) Unregister(k string) Get(k string) (v fs.FS, ok bool) Default() fs.FS }