Docs, docs, docs!

This commit is contained in:
nemunaire 2018-05-12 01:08:37 +02:00
commit dcb67fba63
7 changed files with 38 additions and 2 deletions

View file

@ -7,8 +7,13 @@ import (
"path"
)
// LocalImporter implements an Importer, where files to imports are located
// inside a local directory from your filesystem.
type LocalImporter struct {
// Base is the root directory used by the LocalImporter. It should contains all themes.
Base string
// Symlink changes the normal file copy/concatenate behaviour to symlink/concatenate.
// If enable, your base directory must be accessible by the frontend processus as it will follow the symlink.
Symlink bool
}