mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 13:00:08 -05:00
8 lines
238 B
Go
8 lines
238 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"
|