3
0
Files
corteza/messaging/service/error.go
2019-02-05 15:51:15 +01:00

10 lines
136 B
Go

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