From 3fad4189646cca5d6db99ccfe79be695ef765d03 Mon Sep 17 00:00:00 2001 From: Keuin Date: Sun, 30 Jul 2023 19:04:12 +0800 Subject: Refactor: extract pretty duration to a function. Create `pretty` package for creating human friendly strings --- common/pretty/duration.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 common/pretty/duration.go (limited to 'common/pretty/duration.go') diff --git a/common/pretty/duration.go b/common/pretty/duration.go new file mode 100644 index 0000000..6b4eda4 --- /dev/null +++ b/common/pretty/duration.go @@ -0,0 +1,14 @@ +package pretty + +import ( + "fmt" + "time" +) + +func Duration(duration time.Duration) string { + d := int64(duration.Seconds()) + h := d / 3600 + m := (d % 3600) / 60 + s := d % 60 + return fmt.Sprintf("%02d:%02d:%02d", h, m, s) +} -- cgit v1.2.3