From 398dce66d19beb1f488dd1ecf9882a907567c5c1 Mon Sep 17 00:00:00 2001 From: smartwa Date: Fri, 12 Apr 2024 16:07:49 +0300 Subject: [PATCH] Minor updates --- smartbets_API/__init__.py | 2 +- smartbets_API/interface.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/smartbets_API/__init__.py b/smartbets_API/__init__.py index 38b2e24..00973d4 100644 --- a/smartbets_API/__init__.py +++ b/smartbets_API/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.2.7" +__version__ = "1.2.8" __author__ = "Smartwa Caleb" from .bet_at_rest_api_level import predictor as rest_api from .predictor import predictor diff --git a/smartbets_API/interface.py b/smartbets_API/interface.py index 03fccba..f8ecc91 100644 --- a/smartbets_API/interface.py +++ b/smartbets_API/interface.py @@ -193,7 +193,7 @@ def verify_token(token: Annotated[str, Depends(v1_auth_scheme)]): @app.get("/") def home(): """Redirect to api playground""" - return RedirectResponse("/v1/docs") + return RedirectResponse("/docs") @app.get("/status")