mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-05 01:50:27 +08:00
15 lines
191 B
Python
15 lines
191 B
Python
"""Module entrypoint for `python -m codexlens`."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from codexlens.cli import app
|
|
|
|
|
|
def main() -> None:
|
|
app()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|
|
|