mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-14 07:00:08 -04:00
Add support for implicit workspace. Closes #2514 If snapshot-location is a local file path, copy snapshot instead of uploading. Closes #2550 Do not show snapshot upload status if --progress=false. Closes #2517 Replace --workspace with --snapshot-location. Closes #2512
14 lines
375 B
Go
14 lines
375 B
Go
package constants
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var MissingCloudTokenError = errors.New("to share snapshots to Steampipe Cloud, cloud token must be set")
|
|
|
|
// EEXISTS is the universal error string to denote that a resource already exists
|
|
const EEXISTS = "EEXISTS"
|
|
|
|
// ENOTEXISTS is the universal error string to denote that a resource does not exists
|
|
const ENOTEXISTS = "ENOTEXISTS"
|