1st commit

This commit is contained in:
2025-10-30 22:46:28 -03:00
commit ac722e3512
2 changed files with 13 additions and 0 deletions

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module git.opentty.xyz/robogg133/utctimerightnow.git
go 1.25.3

10
main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"fmt"
"time"
)
func main() {
fmt.Println(time.Now().UTC())
}