aboutsummaryrefslogtreecommitdiffhomepage
path: root/main.go
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2021-11-13 12:24:54 +0900
committernsfisis <nsfisis@gmail.com>2021-11-13 12:24:54 +0900
commit592de31201eb8ece81a4f042f01a910538f543d5 (patch)
tree012567ee2e6dc1f77c0deabe58bf9ffbe5d04106 /main.go
parent0a93290553cc3d130cf03ae242c03b2b2913198f (diff)
downloadbig-clock-mode-592de31201eb8ece81a4f042f01a910538f543d5.tar.gz
big-clock-mode-592de31201eb8ece81a4f042f01a910538f543d5.tar.zst
big-clock-mode-592de31201eb8ece81a4f042f01a910538f543d5.zip
change update interval 30 s to 1 s
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index f4c4396..019d25a 100644
--- a/main.go
+++ b/main.go
@@ -177,7 +177,7 @@ func main() {
}
}()
- t := time.NewTimer(30 * time.Second)
+ t := time.NewTimer(1 * time.Second)
defer t.Stop()
prev := time.Now()