6 lines
217 B
Python
6 lines
217 B
Python
#!/usr/bin/env python3
|
|
"""Wrapper for xmpp_agent_core.py --agent zhiwei"""
|
|
import sys, os
|
|
sys.argv = [sys.argv[0], '--agent', 'zhiwei']
|
|
exec(open(os.path.join(os.path.dirname(__file__), 'xmpp_agent_core.py')).read())
|