noop.py 121 B

12345678910
  1. from ray import serve
  2. @serve.deployment
  3. class Noop:
  4. async def __call__(self):
  5. return 0
  6. app = Noop.bind()