Source code for github_search_engine.cli
1from cleo.application import Application
2
3from github_search_engine import _cli as cli
4
5
[docs]
6def run():
7 application = Application()
8 application.add(cli.ApiCommand())
9 application.add(cli.IndexCommand())
10 application.add(cli.SearchCommand())
11
12 application.run()