From 0df8bd41b5ace012f75ade565bec393fc3094981 Mon Sep 17 00:00:00 2001 From: Scoder12 <34356756+Scoder12@users.noreply.github.com> Date: Tue, 28 Jul 2020 11:21:23 -0700 Subject: [PATCH] Delete out of sync folder --- examples/maqpy/manual_auth.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 examples/maqpy/manual_auth.py diff --git a/examples/maqpy/manual_auth.py b/examples/maqpy/manual_auth.py deleted file mode 100644 index 0721672..0000000 --- a/examples/maqpy/manual_auth.py +++ /dev/null @@ -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()