mirror of
https://github.com/turbot/steampipe.git
synced 2026-01-24 08:01:31 -05:00
13 lines
426 B
Go
13 lines
426 B
Go
package error_helpers
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/turbot/steampipe/pkg/constants"
|
|
)
|
|
|
|
var MissingCloudTokenError = fmt.Errorf("Not authenticated for Steampipe Cloud.\nPlease run %s or setup a token.", constants.Bold("steampipe login"))
|
|
var InvalidCloudTokenError = fmt.Errorf("Invalid token.\nPlease run %s or setup a token.", constants.Bold("steampipe login"))
|
|
var InvalidStateError = errors.New("invalid state")
|