mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
576 B
18 lines
576 B
2 years ago
|
from google.protobuf import descriptor as _descriptor
|
||
|
from google.protobuf import message as _message
|
||
|
from typing import ClassVar as _ClassVar, Optional as _Optional
|
||
|
|
||
|
DESCRIPTOR: _descriptor.FileDescriptor
|
||
|
|
||
|
class HelloReply(_message.Message):
|
||
|
__slots__ = ["message"]
|
||
|
MESSAGE_FIELD_NUMBER: _ClassVar[int]
|
||
|
message: str
|
||
|
def __init__(self, message: _Optional[str] = ...) -> None: ...
|
||
|
|
||
|
class HelloRequest(_message.Message):
|
||
|
__slots__ = ["name"]
|
||
|
NAME_FIELD_NUMBER: _ClassVar[int]
|
||
|
name: str
|
||
|
def __init__(self, name: _Optional[str] = ...) -> None: ...
|