mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-03 18:20:39 +00:00
11 lines
271 B
Go
11 lines
271 B
Go
package common
|
|
|
|
// error msg for common usage
|
|
const (
|
|
ErrLocatingWorkload = "failed to locate the workload"
|
|
ErrLocatingService = "failed to locate any the services"
|
|
ErrCreatingService = "failed to create the services"
|
|
|
|
ErrUpdateStatus = "failed to update status"
|
|
)
|