mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-20 07:13:33 +01:00
7 lines
116 B
Go
7 lines
116 B
Go
package monotime
|
|
|
|
import "time"
|
|
|
|
var initTime = time.Now()
|
|
|
|
func Now() time.Time { return initTime.Add(elapsed()) }
|