Skip to content

Commit 1d53010

Browse files
committed
VERCEL_STUPID
1 parent d3b5e68 commit 1d53010

File tree

9 files changed

+4
-4
lines changed

9 files changed

+4
-4
lines changed

app/__init__.py renamed to api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
app = Flask(__name__)
44

5-
from app import routes
5+
from api import routes
File renamed without changes.

app/index.py renamed to api/index.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from flask import Flask, render_template, request
2-
from app.complexity import get_complexity_analysis
2+
from api.complexity import get_complexity_analysis
33

44
app = Flask(__name__)
55

app/routes.py renamed to api/routes.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from flask import render_template, request
2-
from app.complexity import get_complexity_analysis
3-
from app import app
2+
from api.complexity import get_complexity_analysis
3+
from api import app
44

55
@app.route('/', methods=['GET', 'POST'])
66
def index():
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)