Implemented run command

This commit is contained in:
2024-07-06 19:40:20 +02:00
parent 230bb36709
commit 6fc234c700
7 changed files with 95 additions and 19 deletions

View File

@ -0,0 +1,13 @@
package errors
import "fmt"
// UnknownCLIParameter error is created when a command line parameter is not recognized.
type UnknownCLIParameter struct {
Parameter string
}
// Error generates the string representation.
func (err *UnknownCLIParameter) Error() string {
return fmt.Sprintf("Unknown parameter '%s'", err.Parameter)
}