* Add add default values for isogen subcommand keys * Introduce container interface * Implement docker driver * Add stdin support to container interface * Implement volume mount for container Change-Id: Ide0ecd474b1ccce358bdc9c85ef0006f230490b5
10 lines
189 B
Go
10 lines
189 B
Go
package errors
|
|
|
|
// ErrNotImplemented returned for not implemented features
|
|
type ErrNotImplemented struct {
|
|
}
|
|
|
|
func (e ErrNotImplemented) Error() string {
|
|
return "Error. Not implemented"
|
|
}
|