mirror of
https://github.com/vale981/ray
synced 2025-03-09 12:56:46 -04:00
11 lines
144 B
Python
11 lines
144 B
Python
from typing import Any, Awaitable, TypeVar
|
|
|
|
R = TypeVar("R")
|
|
|
|
|
|
class ObjectRef(Awaitable[R]):
|
|
pass
|
|
|
|
|
|
class ObjectID(Awaitable[R]):
|
|
pass
|