summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/mrexodia/wray/utils.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mrexodia/wray/utils.go')
-rw-r--r--vendor/github.com/mrexodia/wray/utils.go10
1 files changed, 0 insertions, 10 deletions
diff --git a/vendor/github.com/mrexodia/wray/utils.go b/vendor/github.com/mrexodia/wray/utils.go
deleted file mode 100644
index c587f7c6..00000000
--- a/vendor/github.com/mrexodia/wray/utils.go
+++ /dev/null
@@ -1,10 +0,0 @@
-package wray
-
-func contains(target string, slice []string) bool {
- for _, t := range(slice) {
- if t == target {
- return true
- }
- }
- return false
-}