Skip to content

Commit

Permalink
Merge pull request #17 from tssma/add-ci-build
Browse files Browse the repository at this point in the history
completed ci build
  • Loading branch information
tssma authored Nov 22, 2024
2 parents 9753e66 + 3d1514f commit 9849acd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions service/routes.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def create_accounts():
# LIST ALL ACCOUNTS
######################################################################


@app.route("/accounts", methods=["GET"])
def list_accounts():
"""
Expand All @@ -79,6 +80,7 @@ def list_accounts():
# READ AN ACCOUNT
######################################################################


@app.route("/accounts/<int:account_id>", methods=["GET"])
def get_accounts(account_id):
"""
Expand Down Expand Up @@ -119,6 +121,7 @@ def update_accounts(account_id):
# DELETE AN ACCOUNT
######################################################################


@app.route("/accounts/<int:account_id>", methods=["DELETE"])
def delete_accounts(account_id):
"""
Expand Down

0 comments on commit 9849acd

Please sign in to comment.