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'}