8 lines
88 B
Go
8 lines
88 B
Go
package tacitus
|
|
|
|
type Error string
|
|
|
|
func (e Error) Error() string {
|
|
return string(e)
|
|
}
|