7 lines
116 B
Python
7 lines
116 B
Python
# Entry point – simply imports and runs the agent.
|
||
|
||
from agent import main
|
||
|
||
if __name__ == "__main__":
|
||
main()
|