Skip to content

Commit

Permalink
Revert "Add root path configuration (#24)" (#25)
Browse files Browse the repository at this point in the history
This reverts commit ada6339.
  • Loading branch information
t-persson committed Nov 29, 2021
1 parent 455213b commit 6044c59
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/etos_api/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
"""ETOS API."""
import os
import logging
from fastapi import FastAPI
from starlette.responses import RedirectResponse
from etos_api import routers


APP = FastAPI(root_path=os.getenv("ROOT_PATH", ""))
APP = FastAPI()
LOGGER = logging.getLogger(__name__)


Expand Down

0 comments on commit 6044c59

Please sign in to comment.