mirror of
https://github.com/taigrr/wails.git
synced 2026-04-02 05:08:54 -07: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())
|
|
}
|