Versions in this module Expand all Collapse all v0 v0.1.1 Jul 18, 2023 v0.1.0 May 31, 2023 Changes in this version + var ErrMoreThanOneInterface = errors.New("more than one interface found, only one at a time is supported") + var ErrNotFound = errors.New("interface not found") + type Mocker interface + Mock func(in string, out io.Writer, intf string) error + func NewMocker() Mocker + type Service interface + Process func(interfaces []string, filePath string) error + ProcessOne func(input io.Reader, output io.Writer) error + func NewService(m Mocker) Service