10 lines
130 B
Go
10 lines
130 B
Go
package service
|
|
|
|
type (
|
|
serviceError string
|
|
)
|
|
|
|
func (e serviceError) Error() string {
|
|
return "crust.sam.service." + string(e)
|
|
}
|