7 lines
171 B
Python
7 lines
171 B
Python
from agent import *
|
|
|
|
if __name__ == "__main__":
|
|
# Run the CLI defined in agent.py
|
|
# The agent module already contains a __main__ block, so just import it
|
|
pass
|