This commit is contained in:
cheykrym 2025-07-10 19:48:07 +03:00
parent 5c09696ed0
commit 4d809b4b5c
3 changed files with 3 additions and 4 deletions

View File

@ -1,4 +1,3 @@
from .ssl_transport import ssl_transport
from .utils import get_datetime from .utils import get_datetime
__all__ = ["ssl_transport", "get_datetime"] __all__ = ["get_datetime"]

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.ssl_transport import ssl_transport from .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.11" version = "0.0.12"
description = "Библиотека общих компонентов для микросервисов yobble" description = "Библиотека общих компонентов для микросервисов yobble"
authors = [{ name = "cheykrym", email = "you@example.com" }] authors = [{ name = "cheykrym", email = "you@example.com" }]
license = "MIT" license = "MIT"