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

8 lines
88 B
Go
Raw Normal View History

2017-09-09 10:14:50 -07:00
package tacitus
type Error string
func (e Error) Error() string {
return string(e)
}