Delete out of sync folder

This commit is contained in:
Scoder12
2020-07-28 11:21:23 -07:00
committed by GitHub
parent c6e135f2b2
commit 0df8bd41b5
-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()