comcord/commands/time.go
2023-07-26 20:27:04 -06:00

13 lines
158 B
Go

package commands
import (
"fmt"
"time"
)
func TimeCommand() {
now := time.Now().UTC()
fmt.Printf("%s\n\r", now.Format("[Mon 02-Jan-06 15:04:05]"))
}