From 3cf4d1cd7a594d9e711ecb66455f7c3c13f88526 Mon Sep 17 00:00:00 2001 From: Fl1tzi Date: Wed, 4 Oct 2023 21:32:21 +0200 Subject: [PATCH] remove helper --- src/helper.rs | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 src/helper.rs diff --git a/src/helper.rs b/src/helper.rs deleted file mode 100644 index bef6eb2..0000000 --- a/src/helper.rs +++ /dev/null @@ -1,11 +0,0 @@ -// various functions useful for internal parsing or other things - -/// Error for any kind of parsing -pub enum ParseError { - /// Generic error -> something is wrong - UnexpectedValue -} - -pub fn hex_to_rgb(hex: String) -> Result, ParseError> { - -}