Skip to content

Commit

Permalink
Use Unix instead of UnixMicro for Go 1.13 support in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
meowgorithm committed Feb 28, 2022
1 parent 87e4f0c commit 09c8e26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/package-manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ func max(a, b int) int {
}

func main() {
rand.Seed(time.Now().UnixMicro())
rand.Seed(time.Now().Unix())

if err := tea.NewProgram(newModel()).Start(); err != nil {
fmt.Println("Error running program:", err)
Expand Down

0 comments on commit 09c8e26

Please sign in to comment.