1
0
mirror of https://gitea.com/gitea/act synced 2025-06-14 09:51:43 +00:00
Files
act/pkg/lookpath/error.go
2022-11-16 21:29:45 +00:00

11 lines
123 B
Go

package lookpath
type Error struct {
Name string
Err error
}
func (e *Error) Error() string {
return e.Err.Error()
}