Sign in
◑
Theme
go
/
tools
/
e34a3dafd1b4f2e5607a8acb3c9d9f0156f1b088
/
.
/
refactor
/
eg
/
testdata
/
I.template
blob: d03e7748219965cd635cf18295ad44b42319f9bd [
file
]
// +build ignore
package
templates
import
(
"errors"
"fmt"
)
func before
(
s
string
)
error
{
return
fmt
.
Errorf
(
"%s"
,
s
)
}
func after
(
s
string
)
error
{
n
:=
fmt
.
Sprintf
(
"error - %s"
,
s
)
return
errors
.
New
(
n
)
}