Versions in this module Expand all Collapse all v0 v0.5.1 Jan 16, 2020 Changes in this version + var SyslModules = os.Getenv("SYSL_MODULES") != "" + type Fs struct + func NewFs(fs afero.Fs) *Fs + func (fs *Fs) Chmod(name string, mode os.FileMode) error + func (fs *Fs) Chtimes(name string, atime time.Time, mtime time.Time) error + func (fs *Fs) Create(name string) (afero.File, error) + func (fs *Fs) Mkdir(name string, perm os.FileMode) error + func (fs *Fs) MkdirAll(path string, perm os.FileMode) error + func (fs *Fs) Name() string + func (fs *Fs) Open(name string) (afero.File, error) + func (fs *Fs) OpenFile(name string, flag int, perm os.FileMode) (afero.File, error) + func (fs *Fs) Remove(name string) error + func (fs *Fs) RemoveAll(path string) error + func (fs *Fs) Rename(oldname, newname string) error + func (fs *Fs) Stat(name string) (os.FileInfo, error) + type Module struct + Dir string + Name string + func Find(name string) (*Module, error) + type Modules []*Module + func (m *Modules) Add(v *Module) + func (m *Modules) GetByFilename(p string) *Module + func (m *Modules) Load() error