This commit is contained in:
cheykrym 2025-07-10 19:42:23 +03:00
parent 8e854e4df3
commit 5c09696ed0
3 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ from uuid import UUID
from fastapi import HTTPException, status from fastapi import HTTPException, status
from typing import List, Dict from typing import List, Dict
from config import settings from config import settings
from .utils import ssl_transport from .utils.ssl_transport import ssl_transport
async def get_profile_by_user_id(user_id: UUID, token: str) -> dict: async def get_profile_by_user_id(user_id: UUID, token: str) -> dict:

View File

@ -6,7 +6,7 @@ from typing import List
from dataclasses import dataclass from dataclasses import dataclass
from config import settings from config import settings
from .utils import ssl_transport from .utils.ssl_transport import ssl_transport
auth_scheme = HTTPBearer() auth_scheme = HTTPBearer()

View File

@ -1,6 +1,6 @@
[project] [project]
name = "common-lib" name = "common-lib"
version = "0.0.10" version = "0.0.11"
description = "Библиотека общих компонентов для микросервисов yobble" description = "Библиотека общих компонентов для микросервисов yobble"
authors = [{ name = "cheykrym", email = "you@example.com" }] authors = [{ name = "cheykrym", email = "you@example.com" }]
license = "MIT" license = "MIT"