Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Adapter ¶
type Adapter interface {
ToExecutable(parsed parsers.Executable) (Executable, error)
}
Adapter represents an executable adapter
type Builder ¶
type Builder interface { Create() Builder WithApplication(application applications.Application) Builder WithScript(script scripts.Script) Builder Now() (Executable, error) }
Builder represents an executable builder
type Executable ¶
type Executable interface { IsApplication() bool Application() applications.Application IsScript() bool Script() scripts.Script }
Executable represents an executable
Click to show internal directories.
Click to hide internal directories.