mirror of
https://github.com/kairos-io/kairos-agent.git
synced 2025-08-21 01:34:03 +00:00
12 lines
215 B
Go
12 lines
215 B
Go
|
package provider
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/mudler/go-pluggable"
|
||
|
)
|
||
|
|
||
|
func ErrorEvent(format string, a ...interface{}) pluggable.EventResponse {
|
||
|
return pluggable.EventResponse{Error: fmt.Sprintf(format, a...)}
|
||
|
}
|