Skip to content

Commit

Permalink
ci: test deployment with simple server
Browse files Browse the repository at this point in the history
  • Loading branch information
montoyaobeso committed Jun 10, 2024
1 parent 86aeb03 commit c0e25c0
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@


from src.api.routers import (
account,
load_transactions,
load_transactions_s3,
presiged_url,
# account,
# load_transactions,
# load_transactions_s3,
# presiged_url,
root,
send_balance,
transaction,
# send_balance,
# transaction,
)

app = FastAPI(
Expand All @@ -27,12 +27,12 @@
)

app.include_router(root.router)
app.include_router(account.router)
app.include_router(transaction.router)
app.include_router(presiged_url.router)
app.include_router(load_transactions.router)
app.include_router(load_transactions_s3.router)
app.include_router(send_balance.router)
# app.include_router(account.router)
# app.include_router(transaction.router)
# app.include_router(presiged_url.router)
# app.include_router(load_transactions.router)
# app.include_router(load_transactions_s3.router)
# app.include_router(send_balance.router)


if __name__ == "__main__":
Expand Down

0 comments on commit c0e25c0

Please sign in to comment.