mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-01 08:01:35 -05:00
16 lines
289 B
Go
16 lines
289 B
Go
package constants
|
|
|
|
import "time"
|
|
|
|
// Display constants
|
|
const (
|
|
// SpinnerShowTimeout :: duration after which spinner should be shown
|
|
SpinnerShowTimeout = 1 * time.Second
|
|
|
|
// Max Column Width
|
|
MaxColumnWidth = 1024
|
|
|
|
// what do we display for null column values
|
|
NullString = "<null>"
|
|
)
|