mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
19 lines
248 B
Go
19 lines
248 B
Go
package test
|
|
|
|
import (
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
var timestamp time.Time
|
|
|
|
func Mark() {
|
|
now := time.Now()
|
|
if !timestamp.IsZero() {
|
|
delta := now.Sub(timestamp)
|
|
log.Println(delta.Milliseconds(), "ms")
|
|
}
|
|
|
|
timestamp = now
|
|
}
|