mirror of
https://github.com/lyx0/nourybot.git
synced 2024-11-13 19:49:55 +01:00
16 lines
147 B
Go
16 lines
147 B
Go
package common
|
|
|
|
import "time"
|
|
|
|
var (
|
|
uptime time.Time
|
|
)
|
|
|
|
func StartTime() {
|
|
uptime = time.Now()
|
|
}
|
|
|
|
func GetUptime() time.Time {
|
|
return uptime
|
|
}
|