Initial release: cd-browser v0.1.0
This commit is contained in:
16
src/app/main.py
Normal file
16
src/app/main.py
Normal file
@@ -0,0 +1,16 @@
|
||||
import sys
|
||||
|
||||
from app.cli import run_cli
|
||||
from app.logging_config import setup_logging
|
||||
|
||||
|
||||
def main() -> None:
|
||||
"""Run the application entry point."""
|
||||
setup_logging()
|
||||
|
||||
final_path = run_cli()
|
||||
sys.stdout.write(f"{final_path}\n")
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
||||
Reference in New Issue
Block a user