This commit is contained in:
cheykrym 2025-07-10 23:46:32 +03:00
parent 4d809b4b5c
commit 5611cdacda
2 changed files with 2 additions and 2 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.ssl_transport import ssl_transport from common_lib.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

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