mirror of
https://github.com/charlienet/go-mixed.git
synced 2025-07-17 16:12:42 +08:00
13 lines
188 B
Go
13 lines
188 B
Go
package dateconv_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/charlienet/go-mixed/dateconv"
|
|
)
|
|
|
|
func TestToday(t *testing.T) {
|
|
today := dateconv.Today()
|
|
t.Log(dateconv.TimeToString(&today))
|
|
}
|