mirror of https://github.com/go-gitea/gitea
Git with a cup of tea, painless self-hosted git service
Mirror for internal git.with.parts use
https://git.with.parts
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
774 B
29 lines
774 B
2 years ago
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
||
|
// SPDX-License-Identifier: MIT
|
||
|
|
||
|
package timeutil
|
||
|
|
||
|
import (
|
||
|
"time"
|
||
|
|
||
|
"code.gitea.io/gitea/modules/setting"
|
||
|
)
|
||
|
|
||
|
// TimeStampNano is for nano time in database, do not use it unless there is a real requirement.
|
||
|
type TimeStampNano int64
|
||
|
|
||
|
// TimeStampNanoNow returns now nano int64
|
||
|
func TimeStampNanoNow() TimeStampNano {
|
||
|
return TimeStampNano(time.Now().UnixNano())
|
||
|
}
|
||
|
|
||
|
// AsTime convert timestamp as time.Time in Local locale
|
||
|
func (tsn TimeStampNano) AsTime() (tm time.Time) {
|
||
|
return tsn.AsTimeInLocation(setting.DefaultUILocation)
|
||
|
}
|
||
|
|
||
|
// AsTimeInLocation convert timestamp as time.Time in Local locale
|
||
|
func (tsn TimeStampNano) AsTimeInLocation(loc *time.Location) time.Time {
|
||
|
return time.Unix(0, int64(tsn)).In(loc)
|
||
|
}
|