Documentation ¶ Index ¶ type Client type FileSystem func (fs *FileSystem) MkdirAll(path string, perm os.FileMode) error func (fs *FileSystem) Open(name string) (fs.File, error) func (fs *FileSystem) WriteFile(name string, data []byte, perm os.FileMode) error type VirtualFS type WritableVirtualFS Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Client ¶ type Client interface { Do(req *http.Request) (*http.Response, error) } type FileSystem ¶ type FileSystem struct{} func (*FileSystem) MkdirAll ¶ added in v1.7.1 func (fs *FileSystem) MkdirAll(path string, perm os.FileMode) error func (*FileSystem) Open ¶ func (fs *FileSystem) Open(name string) (fs.File, error) func (*FileSystem) WriteFile ¶ added in v1.7.1 func (fs *FileSystem) WriteFile(name string, data []byte, perm os.FileMode) error type VirtualFS ¶ type VirtualFS interface { fs.FS } type WritableVirtualFS ¶ added in v1.7.1 type WritableVirtualFS interface { VirtualFS WriteFile(name string, data []byte, perm os.FileMode) error MkdirAll(path string, perm os.FileMode) error } WritableVirtualFS extends VirtualFS with write operations needed for localization Source Files ¶ View all Source files client.gofilesystem.go Click to show internal directories. Click to hide internal directories.