grpc: removed get/set session options, now accomplished through get_session and start_session

This commit is contained in:
Blake Harnden 2021-04-24 21:37:00 -07:00
parent 3d356272f1
commit d4c008e564
4 changed files with 4 additions and 81 deletions

View file

@ -667,11 +667,11 @@ class Geo:
@dataclass
class Node:
id: int
name: str
type: NodeType
id: int = None
name: str = None
type: NodeType = NodeType.DEFAULT
model: str = None
position: Position = None
position: Position = Position(x=0, y=0)
services: Set[str] = field(default_factory=set)
config_services: Set[str] = field(default_factory=set)
emane: str = None