Delete out of sync file

This commit is contained in:
Scoder12
2020-07-28 11:22:44 -07:00
committed by GitHub
parent 0df8bd41b5
commit bfede7397a
-16
View File
@@ -1,16 +0,0 @@
"""A basic example of repl auth."""
from replit import maqpy
app = maqpy.App("app")
@app.route("/")
def index():
if maqpy.signed_in:
return "Hello " + maqpy.auth.name
else:
return maqpy.signin() # optionally: simple.sigin(title="My title")
if __name__ == "__main__":
app.run()