mirror of
https://github.com/wailsapp/wails.git
synced 2026-03-15 23:25:49 +01:00
10 lines
112 B
Go
10 lines
112 B
Go
package str
|
|
|
|
import (
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func UnixNow() string {
|
|
return fmt.Sprintf("%+v", time.Now().Unix())
|
|
}
|