11 lines
111 B
Python
11 lines
111 B
Python
from ray import serve
|
|
|
|
|
|
@serve.deployment
|
|
class A:
|
|
def __init__(self):
|
|
_ = 1 / 0
|
|
|
|
|
|
node = A.bind()
|