stash-box/scripts/getDate.go
WithoutPants 0f29cf0c84 Initial performer prototype (#1)
* Initial performer prototype

* Drop file: from migration url to fix panic

* Remove vendor requirement
2019-11-18 21:13:05 +11:00

13 lines
149 B
Go

// +build ignore
package main
import "fmt"
import "time"
func main() {
now := time.Now().Format("2006-01-02 15:04:05")
fmt.Printf("%s", now)
}