streamd/src/streamer/localize/localized_shard.py
Konstantin Fickel 0c61067db0
feat: add initial support for positioning
Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
2025-06-22 18:02:42 +02:00

10 lines
200 B
Python

from __future__ import annotations
from streamer.parse.shard import Shard
class LocalizedShard(Shard):
location: dict[str, str]
children: list[LocalizedShard]
__all__ = ["LocalizedShard"]