1
0
mirror of https://gitea.com/gitea/act synced 2026-05-06 01:37:48 +02: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()
}