mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-18 15:02:09 +00:00
13 lines
200 B
Go
13 lines
200 B
Go
package timeformat
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestFormat(t *testing.T) {
|
|
now := time.Now()
|
|
t.Log(now.Format("2006-01-02T15:04:05Z07:00"))
|
|
t.Log(now.Format("2007-01-02T15:04:05Z07:00"))
|
|
}
|