commit ac722e3512baa8a002841dbe316d2df1d8276e84 Author: robogg133 Date: Thu Oct 30 22:46:28 2025 -0300 1st commit diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..dfb7da3 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.opentty.xyz/robogg133/utctimerightnow.git + +go 1.25.3 diff --git a/main.go b/main.go new file mode 100644 index 0000000..08a28e8 --- /dev/null +++ b/main.go @@ -0,0 +1,10 @@ +package main + +import ( + "fmt" + "time" +) + +func main() { + fmt.Println(time.Now().UTC()) +}