Files
mstore/pkg/auxtool/unixnow.go
T
2026-01-26 17:44:54 +02:00

11 lines
110 B
Go

package auxtool
import (
"time"
)
func TimeNow() string {
return time.Now().Format(time.RFC3339)
}