aboutsummaryrefslogtreecommitdiffhomepage
path: root/timer
diff options
context:
space:
mode:
authorGravatar Frédéric Guillot <fred@miniflux.net>2018-08-24 21:51:50 -0700
committerGravatar Frédéric Guillot <fred@miniflux.net>2018-08-24 21:56:39 -0700
commitdbcc5d8a972f4f169e9e2c0636450555a06152b9 (patch)
tree00d7ed89efc2ffdbfa4c602ba66b0c156d48cb0d /timer
parent7f2612d9a67ccb97a9cee8c330b7445f11497d01 (diff)
Use canonical imports
Diffstat (limited to 'timer')
-rw-r--r--timer/doc.go2
-rw-r--r--timer/timer.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/timer/doc.go b/timer/doc.go
index 8d330ae..e27af92 100644
--- a/timer/doc.go
+++ b/timer/doc.go
@@ -7,4 +7,4 @@
Package timer implements utility functions to measure the execution time of a block of code.
*/
-package timer
+package timer // import "miniflux.app/timer"
diff --git a/timer/timer.go b/timer/timer.go
index d7444ca..8f311c3 100644
--- a/timer/timer.go
+++ b/timer/timer.go
@@ -2,12 +2,12 @@
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
-package timer
+package timer // import "miniflux.app/timer"
import (
"time"
- "github.com/miniflux/miniflux/logger"
+ "miniflux.app/logger"
)
// ExecutionTime returns the elapsed time of a block of code.