diff options
Diffstat (limited to 'vendor/github.com/nlopes/slack/internal/timex')
-rw-r--r-- | vendor/github.com/nlopes/slack/internal/timex/timex.go | 18 |
1 files changed, 0 insertions, 18 deletions
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 -} |