Skip to content

Commit 0a0de91

Browse files
Update routes.py
1 parent 7434ac9 commit 0a0de91

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

service/routes.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ def create_accounts():
6161
# LIST ALL ACCOUNTS
6262
######################################################################
6363

64+
6465
@app.route("/accounts", methods=["GET"])
6566
def list_accounts():
6667
"""
@@ -94,6 +95,7 @@ def read_account(id):
9495
# UPDATE AN EXISTING ACCOUNT
9596
######################################################################
9697

98+
9799
@app.route("/accounts/<int:account_id>", methods=["PUT"])
98100
def update_accounts(account_id):
99101
"""

0 commit comments

Comments
 (0)