update dependencies (#296)

This commit is contained in:
tobi
2021-11-13 12:29:08 +01:00
committed by GitHub
parent 2aaec82732
commit 829a934d23
124 changed files with 2453 additions and 1588 deletions

21
vendor/codeberg.org/gruf/go-logger/clock.go generated vendored Normal file
View File

@@ -0,0 +1,21 @@
package logger
import (
"sync"
"time"
"codeberg.org/gruf/go-nowish"
)
var (
clock = nowish.Clock{}
clockOnce = sync.Once{}
)
// startClock starts the global nowish clock
func startClock() {
clockOnce.Do(func() {
clock.Start(time.Millisecond * 10)
clock.SetFormat("2006-01-02 15:04:05")
})
}