refactor: move PowerShell scripts to a dedicated scripts/ directory and remove unused timestamp.go.

This commit is contained in:
Jose Luis Montañes Ojados
2026-01-17 01:50:54 +01:00
parent d7eb34c7d4
commit 6ae4d39b92
6 changed files with 0 additions and 11 deletions

View File

@@ -1,11 +0,0 @@
package main
import (
"fmt"
"time"
)
func main() {
t, _ := time.Parse("2006-01-02 15:04:05", "2023-07-24 10:06:33")
fmt.Println(t.Unix())
}