diff --git a/spinner/spinner.go b/spinner/spinner.go index bde7b7da..bb53597f 100644 --- a/spinner/spinner.go +++ b/spinner/spinner.go @@ -83,6 +83,10 @@ var ( Frames: []string{"☱", "☲", "☴", "☲"}, FPS: time.Second / 3, //nolint:gomnd } + Ellipsis = Spinner{ + Frames: []string{"", ".", "..", "..."}, + FPS: time.Second / 3, //nolint:gomnd + } ) // Model contains the state for the spinner. Use New to create new models