Documentation
¶
Overview ¶
Package tui renders interactive and text progress for CLI operations.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type EventType ¶
type EventType string
EventType describes one operation lifecycle transition.
const ( // Status reports the current operation phase. Status EventType = "status" // Checking marks an item whose cache is being checked. Checking EventType = "checking" // Cached marks an item already available locally. Cached EventType = "cached" // Queued marks an item waiting to transfer. Queued EventType = "queued" // Started marks an active transfer. Started EventType = "started" // Progressed updates an active transfer's byte count. Progressed EventType = "progress" // Done marks a completed transfer. Done EventType = "done" // Failed marks a failed transfer. Failed EventType = "failed" )
Click to show internal directories.
Click to hide internal directories.