Skip to content

Commit

Permalink
Update server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ka8540 authored Mar 26, 2024
1 parent 4d27b62 commit 4611e75
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions PCP/server/src/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
from flask_restful import Resource, Api
from flask_cors import CORS

from .utilities.swen_344_db_utils import *
from .api.login_api import *
from .api.signup_api import *
from .api.user_detail_api import *
from .api.logout_api import *
from utilities.swen_344_db_utils import *
from api.login_api import *
from api.signup_api import *
from api.user_detail_api import *
from api.logout_api import *
app = Flask(__name__) #create Flask instance
CORS(app) #Enable CORS on Flask server to work with Nodejs pages
api = Api(app) #api router
Expand Down

0 comments on commit 4611e75

Please sign in to comment.