diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-24 00:24:30 -0500 |
---|---|---|
committer | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-24 00:24:30 -0500 |
commit | 7005459db8824695ded8aa755f6c7bb89e123fa0 (patch) | |
tree | 5aee321534fd85a9d8b1e4fdbdf8f93d684970f9 | |
parent | f66e718496fdc5c9a9bac1c281ba8e9f3f825791 (diff) |
Remove dead code
-rw-r--r-- | internal/util/util.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/internal/util/util.go b/internal/util/util.go index 9fea40c..e5b7273 100644 --- a/internal/util/util.go +++ b/internal/util/util.go @@ -1,12 +1,3 @@ package util const ErrKey = "error_message" - -func HexMap() [16]byte { - return [16]byte{ - '0', '1', '2', '3', - '4', '5', '6', '7', - '8', '9', 'a', 'b', - 'c', 'd', 'e', 'f', - } -} |