aboutsummaryrefslogtreecommitdiff
path: root/utils/stats/time.go
blob: 8ac50ac3302003b8926c1e6b152029626abef9e1 (plain)
1
2
3
4
5
6
7
8
package stats

import "time"

func GetCurrentTimestamp() string {
	// Get the current UTC time and format it as RFC3339
	return time.Now().UTC().Format(time.RFC3339)
}