aboutsummaryrefslogtreecommitdiff
path: root/internal/util
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-25 17:00:57 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2020-04-25 17:00:57 +0200
commit573ce1982da2e754947453fdaf0d50204873acb4 (patch)
treef6528235dce77db514ce4442ee8817e993fdcc86 /internal/util
parentd21881150c09986571a563eaf30bc1687787e63f (diff)
downloadfeed2imap-go-573ce1982da2e754947453fdaf0d50204873acb4.tar.gz
feed2imap-go-573ce1982da2e754947453fdaf0d50204873acb4.tar.bz2
feed2imap-go-573ce1982da2e754947453fdaf0d50204873acb4.zip
Larger restructuring
Diffstat (limited to 'internal/util')
-rw-r--r--internal/util/util.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/util/util.go b/internal/util/util.go
deleted file mode 100644
index c5472ab..0000000
--- a/internal/util/util.go
+++ /dev/null
@@ -1,11 +0,0 @@
-package util
-
-func StrContains(haystack []string, needle string) bool {
- for _, s := range haystack {
- if s == needle {
- return true
- }
- }
-
- return false
-}