feat: add initial support for positioning

Signed-off-by: Konstantin Fickel <mail@konstantinfickel.de>
This commit is contained in:
Konstantin Fickel 2025-06-22 18:02:42 +02:00
parent 28dc40ebf0
commit 0c61067db0
Signed by: kfickel
GPG key ID: A793722F9933C1A5
9 changed files with 186 additions and 3 deletions

View file

@ -1,5 +1,4 @@
from __future__ import annotations
from typing import Optional
from pydantic import BaseModel
@ -13,7 +12,7 @@ class Shard(BaseModel):
class StreamFile(BaseModel):
filename: str
shard: Optional[Shard] = None
shard: Shard = None
__all__ = ["Shard", "StreamFile"]