Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 273 Bytes

README.md

File metadata and controls

21 lines (15 loc) · 273 Bytes

Go Spinner

Terminal Spinner for Golang

Inspired by askn

Usage

import (
  spinner "./spinner"
)

func main() {
  char_name := "big_circle"
  delay := 150
  stop_time := 2

  spinner.Spinner(char_name, delay, stop_time)
}