21
0
Fork 0

v0.0.393
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m19s Details

This commit is contained in:
Mike Schwörer 2024-02-21 18:33:18 +01:00
parent c25da03217
commit 1007f2c834
Signed by: Mikescher
GPG Key ID: D3C7172E0A70F8CF
2 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,5 @@
package goext
const GoextVersion = "0.0.392"
const GoextVersion = "0.0.393"
const GoextVersionTimestamp = "2024-02-21T18:32:06+0100"
const GoextVersionTimestamp = "2024-02-21T18:33:18+0100"

View File

@ -125,6 +125,15 @@ func NewTime(h int, m int, s int, ns int) Time {
}
}
func NewTimeFromTS(t time.Time) Time {
return Time{
Hour: t.Hour(),
Minute: t.Minute(),
Second: t.Second(),
NanoSecond: t.Nanosecond(),
}
}
func NowTime(loc *time.Location) Time {
now := time.Now().In(loc)
return NewTime(now.Hour(), now.Minute(), now.Second(), now.Nanosecond())