mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-03 19:51:15 +08:00
11 lines
112 B
Go
11 lines
112 B
Go
package str
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func UnixNow() string {
|
|
return fmt.Sprintf("%+v", time.Now().Unix())
|
|
}
|