This repository has been archived on 2022-11-30. You can view files and clone it, but cannot push or open issues or pull requests.
tacitus/errors.go
2017-09-23 11:26:52 -07:00

8 lines
88 B
Go

package tacitus
type Error string
func (e Error) Error() string {
return string(e)
}