Skip to content

Commit 27639d1

Browse files
Add realtime decorator (#35)
1 parent aacca72 commit 27639d1

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

poetry.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "beam-client"
3-
version = "0.2.93"
3+
version = "0.2.94"
44
description = ""
55
authors = ["beam.cloud <support@beam.cloud>"]
66
packages = [
@@ -10,7 +10,7 @@ packages = [
1010

1111
[tool.poetry.dependencies]
1212
python = "^3.8"
13-
beta9 = "^0.1.93"
13+
beta9 = "0.1.94"
1414
requests = "^2.31.0"
1515
websockets = "^12.0"
1616

src/beam/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
from beta9.abstractions.container import Container
44
from beta9.abstractions.endpoint import ASGI as asgi
55
from beta9.abstractions.endpoint import Endpoint as endpoint
6+
from beta9.abstractions.endpoint import RealtimeASGI as realtime
67
from beta9.abstractions.function import Function as function
78
from beta9.abstractions.function import Schedule as schedule
89
from beta9.abstractions.image import Image
@@ -24,6 +25,7 @@
2425
"function",
2526
"endpoint",
2627
"asgi",
28+
"realtime",
2729
"Container",
2830
"env",
2931
"PythonVersion",

0 commit comments

Comments
 (0)