mirror of
https://github.com/simon987/od-database.git
synced 2025-04-20 10:56:47 +00:00
14 lines
222 B
Python
14 lines
222 B
Python
from flask import Flask, send_file
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route("/test1/")
|
|
def test1():
|
|
return send_file("files/apache_table.html")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run("0.0.0.0", port=8888, threaded=True)
|
|
|