mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-19 09:57:45 +08:00
13 lines
178 B
Go
13 lines
178 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package progressui
|
|
|
|
import "github.com/morikuni/aec"
|
|
|
|
var (
|
|
colorRun = aec.BlueF
|
|
colorCancel = aec.YellowF
|
|
colorError = aec.RedF
|
|
)
|