From 1f005a82ada0956f2533a998641fd6218f550533 Mon Sep 17 00:00:00 2001 From: Nick Craig-Wood Date: Sun, 10 May 2020 18:53:38 +0100 Subject: [PATCH] http: add missing comment to pacify linter --- cmd/serve/httplib/serve/data/data.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/serve/httplib/serve/data/data.go b/cmd/serve/httplib/serve/data/data.go index 87b08045e..629835d05 100644 --- a/cmd/serve/httplib/serve/data/data.go +++ b/cmd/serve/httplib/serve/data/data.go @@ -12,6 +12,7 @@ import ( "github.com/rclone/rclone/fs" ) +// AfterEpoch returns the time since the epoch for the given time func AfterEpoch(t time.Time) bool { return t.After(time.Time{}) }