mirror of
https://github.com/turbot/steampipe.git
synced 2026-03-02 02:00:30 -05:00
10 lines
306 B
Go
10 lines
306 B
Go
package constants
|
|
|
|
// EEXISTS :: universal error string to denote that a resource already exists
|
|
const EEXISTS = "EEXISTS"
|
|
|
|
// ENOTEXISTS :: universal error string to denote that a resource does not exists
|
|
const ENOTEXISTS = "ENOTEXISTS"
|
|
|
|
const PluginCrashErrorSubString = "error reading from server: EOF"
|