mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-03 21:49:59 +00:00
11 lines
141 B
Go
11 lines
141 B
Go
package controller
|
|
|
|
type ForgetError struct {
|
|
Err error
|
|
Reason string
|
|
}
|
|
|
|
func (f *ForgetError) Error() string {
|
|
return f.Err.Error()
|
|
}
|