mirror of
https://github.com/turbot/steampipe.git
synced 2025-12-19 18:12:43 -05:00
General code spring cleaning: * move file paths from `consts` package to `filepaths` * move InitData and ExportData to query and control packages
8 lines
246 B
Go
8 lines
246 B
Go
package constants
|
|
|
|
// 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"
|