mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
12 lines
149 B
Go
12 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)
|
|
}
|