goMuffin/configs/time.go
2025-04-05 11:38:59 +09:00

10 lines
111 B
Go

package configs
import "time"
var StartedAt *time.Time
func init() {
now := time.Now()
StartedAt = &now
}