Removed redundant stuff

This commit is contained in:
Hannah dagemark 2026-08-06 22:56:13 +02:00
commit f5b274a678
5 changed files with 1 additions and 43 deletions

View file

@ -1,15 +0,0 @@
from fastapi import APIRouter
from app.logic.example_logic import get_example_message
router = APIRouter(
prefix="/example",
tags=["Example"]
)
@router.get("/")
def get_example():
return(
get_example_message()
)