confetty/confetti/confetti_unix.go
Yasuhiro Matsumoto 17dd7e3eae
Support Windows
2021-11-03 01:05:42 +09:00

17 lines
237 B
Go

//go:build !windows
// +build !windows
package confetti
import (
"golang.org/x/term"
)
func InitialModel() model {
width, height, err := term.GetSize(0)
if err != nil {
panic(err)
}
return InitialModelWithSize(width, height)
}