mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-26 01:34:43 +03:00
98b47a2666
* refactor: moved cli flags to pkg cli/flag * testh: add OptLongDB for long-running tests * implement 'sq config dir' * legacy dir migration: probably a bad idea * cleanup * Refactored SQ_CONFIG and --config * added yaml writer * Dialing in tests * YAML output for 'sq driver ls' * Significant refactoring of config * Minor test for ioz * Rename source.Set to source.Collection * Cleaning up references to source.Set
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"
|
|
)
|