mv TimeOut -> Timeout

This commit is contained in:
2023-08-16 10:58:44 +02:00
parent 8f6fc72bfb
commit 8a1c16f402
4 changed files with 4 additions and 4 deletions

View File

@@ -63,7 +63,7 @@ func NewSingleAction(config internal.ActionConfig, c chan bool) (Action, error)
return NewPrint(config, c)
}
if config.Type == "TimeOut" {
if config.Type == "Timeout" {
return NewTimeOut(config, c)
}