Lynxie/internal/err/err.go
Fluffy-Bean 2e5f4bce11 Update pipeline
And commit half-baked code restructure
2025-04-28 22:32:30 +01:00

10 lines
110 B
Go

package err
type Error struct {
Msg string
Err error
}
func (e *Error) Ok() bool {
return e.Err == nil
}