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