Files
2026-07-13 13:17:40 +08:00

11 lines
121 B
Python

from ray import serve
@serve.deployment
class Noop:
async def __call__(self):
return 0
app = Noop.bind()