feat: add initial support for positioning
Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
This commit is contained in:
parent
28dc40ebf0
commit
0c61067db0
9 changed files with 186 additions and 3 deletions
10
src/streamer/localize/localized_shard.py
Normal file
10
src/streamer/localize/localized_shard.py
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
from __future__ import annotations
|
||||
from streamer.parse.shard import Shard
|
||||
|
||||
|
||||
class LocalizedShard(Shard):
|
||||
location: dict[str, str]
|
||||
children: list[LocalizedShard]
|
||||
|
||||
|
||||
__all__ = ["LocalizedShard"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue