YouChuKoffee/app/console/test.go

11 lines
106 B
Go
Raw Normal View History

2024-06-17 14:18:39 +08:00
package console
2024-08-21 14:30:20 +08:00
import (
"fmt"
"time"
)
2024-06-17 14:18:39 +08:00
func test() {
2024-08-21 14:30:20 +08:00
fmt.Printf(time.Now().Format(time.DateTime))
2024-06-17 14:18:39 +08:00
}