A MySQL terminal client with auto-completion and syntax highlighting. \b Examples: - mycli my_database - mycli -u my_user -h my_host.com my_database - mycli mysql://my_user@my_host.com:3306/my_database
(
cli_args: CliArgs,
)
| 415 | @clickdc.adddc('cli_args', CliArgs) |
| 416 | @click.version_option(mycli_package.__version__, '--version', '-V', help="Output mycli's version.") |
| 417 | def click_entrypoint( |
| 418 | cli_args: CliArgs, |
| 419 | ) -> None: |
| 420 | """A MySQL terminal client with auto-completion and syntax highlighting. |
| 421 | |
| 422 | \b |
| 423 | Examples: |
| 424 | - mycli my_database |
| 425 | - mycli -u my_user -h my_host.com my_database |
| 426 | - mycli mysql://my_user@my_host.com:3306/my_database |
| 427 | |
| 428 | """ |
| 429 | |
| 430 | run_from_cli_args(cli_args, client_factory=MyCli) |
| 431 | |
| 432 | |
| 433 | def main() -> int | None: |
nothing calls this directly
no test coverage detected