Removed bad references

This commit is contained in:
Andros Fenollosa
2025-01-24 10:00:46 +01:00
parent 0fdabb2ab4
commit 6a7abd3f95
3 changed files with 2 additions and 4 deletions

View File

@ -2,7 +2,7 @@ import os
from enum import Enum
from functools import wraps
from core_auth.core.entity.ResponseTypes import ResponseTypes
from src.core.entity.ResponseTypes import ResponseTypes
from src.core.use_case import (
clients_use_case,
users_use_case,

View File

@ -41,5 +41,5 @@ async def index():
return {
"type": ResponseTypes.SUCCESS,
"error": [],
"data": "Welcome to the Core Auth API. Check the documentation at /docs.",
"data": "Welcome to the API. Check the documentation at /docs.",
}