3
0
corteza/sam/service/error.go

10 lines
130 B
Go

package service
type (
serviceError string
)
func (e serviceError) Error() string {
return "crust.sam.service." + string(e)
}