mirror of
https://github.com/turbot/steampipe.git
synced 2026-02-15 13:00:08 -05:00
8 lines
173 B
Go
8 lines
173 B
Go
package workspace
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrorNoModDefinition = errors.New("this command requires a mod definition file - could not find in the current directory tree")
|
|
)
|