from flask import Flask app=Flask('app') @app.route('/') def run_code(): return '' app.run(host='0.0.0.0', port=8080)
確定! 回上一頁