Documentation ¶ Index ¶ type Check type Config type Delim func (d *Delim) GetLeft() string func (d *Delim) GetRight() string type Finder func NewFinder(fs afero.Fs) *Finder func (f *Finder) Find() (string, error) type Reader func NewReader(fs afero.Fs) *Reader func (r *Reader) Read(p string, cfg *Config) error Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Check ¶ type Check struct { Expr string } type Config ¶ type Config struct { Src string `json:"src"` Dest string `json:"dest"` Delim *Delim `json:"delim,omitempty"` } type Delim ¶ type Delim struct { Left string `json:"left,omitempty"` Right string `json:"right,omitempty"` } func (*Delim) GetLeft ¶ func (d *Delim) GetLeft() string func (*Delim) GetRight ¶ func (d *Delim) GetRight() string type Finder ¶ type Finder struct { // contains filtered or unexported fields } func NewFinder ¶ func NewFinder(fs afero.Fs) *Finder func (*Finder) Find ¶ func (f *Finder) Find() (string, error) type Reader ¶ type Reader struct { // contains filtered or unexported fields } func NewReader ¶ func NewReader(fs afero.Fs) *Reader func (*Reader) Read ¶ func (r *Reader) Read(p string, cfg *Config) error Source Files ¶ View all Source files check.go config.go delim.go finder.go reader.go Click to show internal directories. Click to hide internal directories.