diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-12 20:55:50 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-12 20:55:50 +0100 |
commit | 374d39c6754894d34af016699fabd25706fa2f68 (patch) | |
tree | 1c33e3ae6b3d2981169b42db576f4d8c834ce530 /main.py | |
parent | a42d22dd4b9ae33884f93d5fac5e672f4598dcaf (diff) |
move main.py inside api folder
Diffstat (limited to 'main.py')
-rw-r--r-- | main.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/main.py b/main.py deleted file mode 100644 index b71dadb..0000000 --- a/main.py +++ /dev/null @@ -1,8 +0,0 @@ -from flask import Flask - -app = Flask(__name__) - -@app.route("/test") -def testroute(): - return "It's working!" - |