Output completion time of last parse

This commit is contained in:
Anthony Mineo 2020-03-15 14:49:00 -04:00
parent 15d89ae5e1
commit 915b396bc5

View file

@ -10,6 +10,7 @@ package main
import ( import (
"fmt" "fmt"
"time"
) )
func main() { func main() {
@ -19,5 +20,5 @@ func main() {
fmt.Println("Starting stat parser") fmt.Println("Starting stat parser")
initParser() initParser()
fmt.Println("All done!") fmt.Println("All done!", time.Now().Format(time.RFC850))
} }