Data and structures converted

This commit is contained in:
Daniel J. Summers
2018-01-17 23:00:26 -06:00
parent 8d8d112fff
commit 0807aa300a
3 changed files with 372 additions and 0 deletions

11
src/my-prayer-journal.go Normal file
View File

@@ -0,0 +1,11 @@
// myPrayerJournal API Server
package main
import (
"fmt"
"time"
)
func main() {
fmt.Print(time.Now().UnixNano() / int64(1000000))
}