3
0
corteza/auth/service/error.go
2018-09-04 15:37:43 +02:00

10 lines
130 B
Go

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