Skip to content

Commit

Permalink
v0.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
frabarz committed Apr 19, 2024
1 parent ef40ccb commit 820d7b5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
14 changes: 9 additions & 5 deletions logiclayer/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
"""LogicLayer module."""

from .auth import AuthProvider, AuthToken, AuthTokenType
from .decorators import exception_handler, healthcheck, on_shutdown, on_startup, route
from .logiclayer import LogicLayer
from .module import LogicLayerModule, ModuleStatus
__title__ = "logiclayer"
__description__ = (
"A framework to quickly compose and use multiple functionalities as endpoints."
)
__version__ = "0.3.3"

__all__ = (
"AuthProvider",
Expand All @@ -19,4 +20,7 @@
"route",
)

__version__ = "0.3.2"
from .auth import AuthProvider, AuthToken, AuthTokenType
from .decorators import exception_handler, healthcheck, on_shutdown, on_startup, route
from .logiclayer import LogicLayer
from .module import LogicLayerModule, ModuleStatus
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "logiclayer"
version = "0.3.2"
version = "0.3.3"
description = "A framework to quickly compose and use multiple functionalities as endpoints."
authors = ["Francisco Abarzua <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 820d7b5

Please sign in to comment.