mirror of
https://github.com/stashapp/stash-box.git
synced 2026-02-05 15:55:21 -06:00
* Initial performer prototype * Drop file: from migration url to fix panic * Remove vendor requirement
13 lines
149 B
Go
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)
|
|
}
|