8 lines
82 B
Go
8 lines
82 B
Go
package schema
|
|
|
|
import "time"
|
|
|
|
func nowUnix() int64 {
|
|
return time.Now().Unix()
|
|
}
|