mirror of
https://github.com/turbot/steampipe.git
synced 2026-04-10 13:00:07 -04:00
14 lines
357 B
Go
14 lines
357 B
Go
package constants
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var MissingCloudTokenError = errors.New("no token found, please run 'steampipe login'")
|
|
|
|
// 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"
|