From 1c01a5e5e9ffe5220ef2f7d9776927dc8ffb17dd Mon Sep 17 00:00:00 2001 From: Charles Iliya Krempeaux Date: Mon, 12 Feb 2024 21:32:52 -0800 Subject: [PATCH] initial commits --- errors.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 errors.go diff --git a/errors.go b/errors.go new file mode 100644 index 0000000..9fdf11f --- /dev/null +++ b/errors.go @@ -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") +)