initial commits

master
Charles Iliya Krempeaux 2024-02-12 21:32:52 -08:00
parent d38a407f0b
commit 1c01a5e5e9
1 changed files with 10 additions and 0 deletions

10
errors.go 100644
View File

@ -0,0 +1,10 @@
package htmlescape
import (
"sourcecode.social/reiver/go-erorr"
)
const (
errInternalError = erorr.Error("htmlescape: internal error")
errNotUTF8 = erorr.Error("htmlespcape: not UTF-8")
)