Run the sqlc CLI. It takes an array of command-line arguments (excluding the executable argument itself) and returns an exit code.
(args []string)
| 26 | // (excluding the executable argument itself) and returns an exit |
| 27 | // code. |
| 28 | func Run(args []string) int { |
| 29 | return cmd.Do(args, os.Stdin, os.Stdout, os.Stderr) |
| 30 | } |