From 071b472221fbf62ddd3597afb1a0f9be0a2ffb49 Mon Sep 17 00:00:00 2001 From: n Date: Wed, 9 Jul 2025 05:57:27 +0000 Subject: [PATCH] bump --- app/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.py b/app/main.py index fd51752..2bd434f 100644 --- a/app/main.py +++ b/app/main.py @@ -15,7 +15,7 @@ client_id = os.environ['MONZO_CLIENT_ID'] client_secret = os.environ['MONZO_CLIENT_SECRET'] callback_uri = os.environ['MONZO_CALLBACK_URI'] -app = FastAPI('/monzo') +app = FastAPI(root_path='/monzo') @app.get('/') def read_root(): return {'version': 'v0.0.9'}