mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-14 10:00:15 -05:00
10 lines
238 B
Go
10 lines
238 B
Go
package error_helpers
|
|
|
|
import (
|
|
"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"))
|