aisk / chrysanthemum

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

chrysanthemum

GoDoc

菊花【Jú Huā】

Add a text spinner to your terminal applications.

Usage

package main

import (
	"github.com/aisk/chrysanthemum"
	"time"
)

func main() {
	c := chrysanthemum.New("I'll be ok").Start()
	time.Sleep(5 * time.Second)
	c.End()
	c = chrysanthemum.New("I'll be error").Start()
	time.Sleep(5 * time.Second)
	c.Failed()
}

About


Languages

Language:Go 100.0%