(api_module, host, port, no_404_documentation, show_intro=True)
| 39 | |
| 40 | |
| 41 | def _start_api(api_module, host, port, no_404_documentation, show_intro=True): |
| 42 | API(api_module).http.serve(host, port, no_404_documentation, show_intro) |
| 43 | |
| 44 | |
| 45 | @cli(version=current) |