mirror of
https://gitea.com/gitea/act
synced 2025-06-14 09:51:43 +00:00
11 lines
123 B
Go
11 lines
123 B
Go
package lookpath
|
|
|
|
type Error struct {
|
|
Name string
|
|
Err error
|
|
}
|
|
|
|
func (e *Error) Error() string {
|
|
return e.Err.Error()
|
|
}
|