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