summaryrefslogtreecommitdiff
path: root/patch.common.go
blob: 01d4cc10cf1f54ccd0b728a7eea5f36d45716462 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package forgepb

import (
	"fmt"
)

func (pb *Patch) Error(err any) error {
	return fmt.Errorf("%v", err)
}

func (pb *Patches) Error(err any) error {
	return fmt.Errorf("%v", err)
}