12 lines
138 B
Go
12 lines
138 B
Go
|
// myPrayerJournal API Server
|
||
|
package main
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
fmt.Print(time.Now().UnixNano() / int64(1000000))
|
||
|
}
|