summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/nlopes/slack/internal
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/nlopes/slack/internal')
-rw-r--r--vendor/github.com/nlopes/slack/internal/errorsx/errorsx.go8
-rw-r--r--vendor/github.com/nlopes/slack/internal/timex/timex.go18
2 files changed, 0 insertions, 26 deletions
diff --git a/vendor/github.com/nlopes/slack/internal/errorsx/errorsx.go b/vendor/github.com/nlopes/slack/internal/errorsx/errorsx.go
deleted file mode 100644
index cb850577..00000000
--- a/vendor/github.com/nlopes/slack/internal/errorsx/errorsx.go
+++ /dev/null
@@ -1,8 +0,0 @@
-package errorsx
-
-// String representing an error, useful for declaring string constants as errors.
-type String string
-
-func (t String) Error() string {
- return string(t)
-}
diff --git a/vendor/github.com/nlopes/slack/internal/timex/timex.go b/vendor/github.com/nlopes/slack/internal/timex/timex.go
deleted file mode 100644
index 40063f73..00000000
--- a/vendor/github.com/nlopes/slack/internal/timex/timex.go
+++ /dev/null
@@ -1,18 +0,0 @@
-package timex
-
-import "time"
-
-// Max returns the maximum duration
-func Max(values ...time.Duration) time.Duration {
- var (
- max time.Duration
- )
-
- for _, v := range values {
- if v > max {
- max = v
- }
- }
-
- return max
-}