This commit is contained in:
MarkusJoe
2022-02-16 17:03:46 +08:00
parent 3f514cd407
commit 347289ba2d
1 file changed
+5
+5
View File
@@ -123,6 +123,11 @@ def index() -> Response:
return app.send_static_file('index.html')
@app.route('/arg')
def arg():
return {'data': sys.argv}
if __name__ == '__main__':
import sys
logger.info(sys.argv)