Files
act_runner/pkg/lookpath/error.go
Christopher Homberger c192d65d18 exclude act pkg from vet
2026-02-23 23:33:02 +01:00

14 lines
214 B
Go

// Copyright 2026 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
package lookpath
type Error struct {
Name string
Err error
}
func (e *Error) Error() string {
return e.Err.Error()
}