Skip to content

Commit 6044c59

Browse files
authored
Revert "Add root path configuration (#24)" (#25)
This reverts commit ada6339.
1 parent 455213b commit 6044c59

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/etos_api/main.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,13 @@
1414
# See the License for the specific language governing permissions and
1515
# limitations under the License.
1616
"""ETOS API."""
17-
import os
1817
import logging
1918
from fastapi import FastAPI
2019
from starlette.responses import RedirectResponse
2120
from etos_api import routers
2221

2322

24-
APP = FastAPI(root_path=os.getenv("ROOT_PATH", ""))
23+
APP = FastAPI()
2524
LOGGER = logging.getLogger(__name__)
2625

2726

0 commit comments

Comments
 (0)