v0.0.393
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m19s
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m19s
This commit is contained in:
parent
c25da03217
commit
1007f2c834
@ -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"
|
||||
|
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user