go-htmlescape/errors.go

11 lines
199 B
Go
Raw Permalink Normal View History

2024-02-13 05:32:52 +00:00
package htmlescape
import (
"sourcecode.social/reiver/go-erorr"
)
const (
errInternalError = erorr.Error("htmlescape: internal error")
errNotUTF8 = erorr.Error("htmlespcape: not UTF-8")
)