8 lines
147 B
Go
8 lines
147 B
Go
|
package errors
|
||
|
|
||
|
type InfrastructureNotInSync struct{}
|
||
|
|
||
|
func (i InfrastructureNotInSync) Error() string {
|
||
|
return "Infrastructure is not in sync"
|
||
|
}
|