1930600c40
This reverts commit 3c383db9a7.
13 lines
153 B
Python
13 lines
153 B
Python
from flask import Flask
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def hello_world():
|
|
return 'This is Moon'
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|