From 250b3bb5795240d5ebdab5416ab99dbc41be734b Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 1 Mar 2020 20:59:19 +0100 Subject: Use upstream slack-go/slack again (#1018) --- .../nlopes/slack/internal/errorsx/errorsx.go | 8 -------- vendor/github.com/nlopes/slack/internal/timex/timex.go | 18 ------------------ 2 files changed, 26 deletions(-) delete mode 100644 vendor/github.com/nlopes/slack/internal/errorsx/errorsx.go delete mode 100644 vendor/github.com/nlopes/slack/internal/timex/timex.go (limited to 'vendor/github.com/nlopes/slack/internal') 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 -} -- cgit v1.2.3