errors.go 99 B

12345
  1. package cookies
  2. type cookieError string
  3. func (e cookieError) Error() string { return string(e) }