diff options
author | Benjamin Chausse <benjamin@chausse.xyz> | 2024-11-24 01:10:15 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-24 01:10:15 -0500 |
commit | d92c9c601e1ef8c183562c94141db493de50921f (patch) | |
tree | 6caffa28f14f92be4711c91887c83db74f4460af /internal/util/util.go | |
parent | f66e718496fdc5c9a9bac1c281ba8e9f3f825791 (diff) |
Remove useless code and implement clipboard functionality (#1)
* Remove dead code
* Implement clipboard
* Improve Stringer color interfaces
Diffstat (limited to 'internal/util/util.go')
-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', - } -} |