mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
15 lines
297 B
Go
15 lines
297 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
// Display constants
|
|
const (
|
|
// SpinnerShowTimeout is the duration after which spinner should be shown
|
|
SpinnerShowTimeout = 1 * time.Second
|
|
|
|
MaxColumnWidth = 1024
|
|
|
|
// NullString is the string which is displayed for null column values
|
|
NullString = "<null>"
|
|
)
|