12345678910111213141516171819202122232425262728293031 |
- // package cli exposes the command-line interface for sqlc. It can be used to
- // run sqlc from Go without the overhead of creating a child process.
- //
- // Example usage:
- //
- // package main
- //
- // import (
- // "os"
- //
- // sqlc "github.com/kyleconroy/sqlc/pkg/cli"
- // )
- //
- // func main() {
- // os.Exit(sqlc.Run(os.Args[1:]))
- // }
- //
- package cli
- import (
- "os"
- "github.com/kyleconroy/sqlc/internal/cmd"
- )
- // Run the sqlc CLI. It takes an array of command-line arguments
- // (excluding the executable argument itself) and returns an exit
- // code.
- func Run(args []string) int {
- return cmd.Do(args, os.Stdin, os.Stdout, os.Stderr)
- }
|