mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-26 09:44:18 +03:00
10 lines
257 B
Go
10 lines
257 B
Go
|
package cli
|
||
|
|
||
|
const (
|
||
|
msgInvalidArgs = "invalid args"
|
||
|
msgNoActiveSrc = "no active data source"
|
||
|
msgEmptyQueryString = "query string is empty"
|
||
|
msgSrcNoData = "source has no data"
|
||
|
msgSrcEmptyTableName = "source has empty table name"
|
||
|
)
|