10 lines
200 B
Python
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"]
|