(cmd *Command)
| 82 | } |
| 83 | |
| 84 | func addConfigFlag(cmd *Command) { |
| 85 | cmd.CommonFlag.StringVar(&configFile, "config", "~/.cql/config.yaml", |
| 86 | "Config file for CovanantSQL (Usually no need to set, default is enough.)") |
| 87 | } |
| 88 | |
| 89 | func configInit() { |
| 90 | configFile = utils.HomeDirExpand(configFile) |
no outgoing calls
no test coverage detected