10 lines
116 B
Go
10 lines
116 B
Go
package configs
|
|
|
|
import "time"
|
|
|
|
var StartedAt *time.Time
|
|
|
|
func TimeStart() {
|
|
now := time.Now()
|
|
StartedAt = &now
|
|
}
|