13 lines
177 B
Python
13 lines
177 B
Python
"""Main entry point for DevTrace."""
|
|
|
|
from src.cli import main
|
|
|
|
|
|
def entry_point():
|
|
"""Entry point for the CLI."""
|
|
main()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
entry_point()
|