Reviewed-on: #17 Reviewed-by: sundapeng <sundp@mail.zgclab.edu.cn> Reviewed-by: xuxt <xuxt@zgclab.edu.cn>
11 lines
167 B
Python
11 lines
167 B
Python
#!/usr/bin/env python3
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
|
|
from app.main import main as agent_main
|
|
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(agent_main())
|