11 lines
121 B
Python
11 lines
121 B
Python
from ray import serve
|
|
|
|
|
|
@serve.deployment
|
|
class Noop:
|
|
async def __call__(self):
|
|
return 0
|
|
|
|
|
|
app = Noop.bind()
|