auto-renamer / app.py
dragxd's picture
Initial commit
325be9d
raw
history blame contribute delete
149 Bytes
from flask import Flask
app = Flask(__name__)
@app.route('/')
def hello_world():
return '@lungiiman'
if __name__ == "__main__":
app.run()